/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  /* ── OCEAN MAJESTY BRAND COLORS ── */
  --ocean: #0d3352;
  --aqua: #1a9fc7;
  --aqua-pale: rgba(26, 159, 199, 0.08);
  --aqua-ring: rgba(26, 159, 199, 0.18);
  --aqua-mid: rgba(26, 159, 199, 0.35);
  --wave: #2c7fb4;

  /* ── NEUTROS ── */
  --white: #ffffff;
  --off: #f4f7fa;
  --border: #dde5ec;
  --text: #0e1923;
  --muted: #5a7080;
  --hint: #96aab5;

  /* ── ACENTO SECUNDARIO ── */
  --gold: #c4922f;
  --gold-pale: #fdf5e4;

  /* ── TIPOGRAFÍA ── */
  --display: "Montserrat", system-ui, sans-serif;
  --sans: "Raleway", system-ui, sans-serif;

  /* ── LAYOUT ── */
  --r-card: 16px;
  --r-pill: 100px;
  --r-sm: 8px;
  --shadow-card: 0 2px 16px rgba(13, 51, 82, 0.08);
  --shadow-hover: 0 20px 54px rgba(13, 51, 82, 0.18);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-thumb {
  background: var(--aqua);
}
img {
  display: block;
}
a {
  color: inherit;
}
button {
  font-family: var(--sans);
}

/* ── UTILS ── */
.serif {
  font-family: var(--display);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.reveal.vis {
  opacity: 1;
  transform: none;
}

/* ── FLOATING WA ── */
.wa-fab {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 300;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  animation: wapulse 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-fab:hover {
  transform: scale(1.08);
}
.wa-fab svg {
  width: 25px;
  height: 25px;
  fill: white;
}
@keyframes wapulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.62);
  }
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  transition:
    background 0.35s,
    backdrop-filter 0.35s,
    border-bottom 0.35s;
}
.nav.solid {
  background: rgba(244, 247, 250, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo .logo-dark {
  display: none;
}
.nav.solid .nav-logo .logo-light {
  display: none;
}
.nav.solid .nav-logo .logo-dark {
  display: block;
}
.nav-logo span {
  color: var(--aqua);
  font-weight: 900;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: white;
}
.nav.solid .nav-links a {
  color: var(--ocean);
}
.nav.solid .nav-links a:hover {
  color: var(--text);
}
.lang-sw {
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 0.2rem;
}
.lang-active {
  color: #fff;
  opacity: 0.9;
}
.lang-sep {
  color: rgba(255, 255, 255, 0.3);
  padding: 0 0.25rem;
}
.lang-inactive {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.nav.solid .lang-active {
  color: var(--ocean);
  opacity: 1;
}
.nav.solid .lang-sep {
  color: rgba(13, 51, 82, 0.3);
}
.nav.solid .lang-inactive {
  color: rgba(13, 51, 82, 0.5);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--text);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.55rem 1.2rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--ocean);
}
.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--white);
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 1.5rem;
}
.nav-drawer.open {
  display: flex;
}
.nav-drawer a {
  font-size: 1.3rem;
  font-family: var(--display);
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

/* ── BTN SYSTEM ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--aqua);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: #0d92b3;
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.82rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline:hover {
  border-color: var(--text);
  background: var(--off);
}
.btn-wa-green {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: white;
  font-size: 0.73rem;
  font-weight: 500;
  padding: 0.65rem 1.15rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-wa-green:hover {
  background: #1fba5a;
  transform: translateY(-1px);
}
.btn-details {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.6rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-details:hover {
  border-color: var(--text);
  background: var(--off);
}

/* ── HERO ── */
.hero {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 4.5rem 2.5rem 2.5rem;
  overflow: hidden;
  position: relative;
  background: url("../images/landing/luxury-big-yacht-stay-sea-around-island-background-sky.jpg")
    center / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 51, 82, 0.82) 0%,
    rgba(4, 20, 35, 0.72) 100%
  );
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: white;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--aqua);
  font-weight: 700;
}
.hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}
.hero .btn-outline {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.35);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
.hero-trust {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}
.trust-num {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  color: white;
}
.trust-lbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
  display: block;
}

/* hero image */
.hero-img-side {
  opacity: 0;
  animation: fadeIn 0.9s 0.5s forwards;
}
.hero-img-wrap {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(13, 51, 82, 0.18);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 51, 82, 0.06) 0%,
    rgba(13, 51, 82, 0.55) 100%
  );
}
.hero-img-badge {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: rgba(196, 146, 47, 0.92);
  color: white;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: var(--r-pill);
}
.hero-img-tag {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: white;
}
.hero-img-tag .lbl {
  font-size: 0.6rem;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.hero-img-tag .val {
  font-family: var(--display);
  font-size: 1.05rem;
}

/* ── SECTION COMMONS ── */

.sec-eye {
  padding-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 0.75rem;
}
.sec-h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
}
.sec-h2 em {
  font-style: italic;
  color: var(--aqua);
}
.sec-sub {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
  max-width: 500px;
}

/* ── FLEET SECTION ── */
#flota {
  background: var(--off);
}
.fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.filter-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: white;
}

/* Fleet grid — equal 3-col */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── YACHT CARD — glass ── */
.yacht-card {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(230, 228, 222, 0.8);
  border-radius: var(--r-card);
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.yacht-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 163, 199, 0.35);
}

/* card image */
.card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 1;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s;
}
.yacht-card:hover .card-img img {
  transform: scale(1.07);
}
.card-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 51, 82, 0.58) 0%,
    transparent 55%
  );
  opacity: 0.72;
  transition: opacity 0.3s;
}
.yacht-card:hover .card-img-grad {
  opacity: 0.45;
}

/* floating elements on image */
.card-hot {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(196, 146, 47, 0.9);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
}
.card-type-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
}
.card-pax {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.63rem;
  font-weight: 500;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.card-pax svg {
  width: 11px;
  height: 11px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}
.card-tags-row {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.card-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
}

/* hover CTA overlay */
.card-hover-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 51, 82, 0.15);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s;
}
.yacht-card:hover .card-hover-cta {
  opacity: 1;
}
.card-hover-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--aqua);
  color: white;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(26, 159, 199, 0.38);
  transform: translateY(6px);
  transition: transform 0.3s;
}
.yacht-card:hover .card-hover-btn {
  transform: translateY(0);
}
.card-hover-btn svg {
  width: 14px;
  height: 14px;
  fill: white;
  flex-shrink: 0;
}

/* stretched link — covers the whole card, sits below buttons */
.card-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--r-card);
}

/* card body */
.card-body {
  padding: 1.35rem 1.4rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.card-model {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
}
.card-name {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
.card-specs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.spec {
  flex: 1;
  padding: 0.6rem 0;
  text-align: center;
  border-right: 1px solid var(--border);
}
.spec:last-child {
  border-right: none;
}
.spec-val {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  line-height: 1;
}
.spec-lbl {
  font-size: 0.55rem;
  color: var(--hint);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
  display: block;
}
.card-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.inc-pill {
  font-size: 0.62rem;
  color: var(--muted);
  background: var(--off);
  border: 1px solid var(--border);
  padding: 0.22rem 0.65rem;
  border-radius: var(--r-pill);
}

.card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
  flex-direction: column;
  gap: 0.75rem;
}
.card-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.card-price-val {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.card-price-lbl {
  font-size: 0.6rem;
  color: var(--hint);
  margin-top: 3px;
  display: block;
}

/* ── HOW IT WORKS ── */
#como {
  background: var(--white);
}
.how-center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.how-card {
  padding: 1.75rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.how-card:hover {
  border-color: var(--aqua);
  transform: translateY(-3px);
}
.how-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--aqua-pale);
  color: var(--ocean);
  font-family: var(--display);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  border: 1px solid var(--aqua-ring);
}
.how-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.how-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── EXPERIENCES ── */
#experiencias {
  background: var(--off);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.exp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.exp-card:hover {
  border-color: var(--aqua);
  transform: translateY(-3px);
}
.exp-ico {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--aqua);
}
.exp-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.exp-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}
.exp-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  background: var(--aqua-pale);
  padding: 0.22rem 0.7rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--aqua-ring);
}

/* ── DESTINOS ── */
#destinos {
  background: var(--white);
}
.dest-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: 210px 210px;
  gap: 1.25rem;
  margin-top: 3rem;
}
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.dest-card.tall {
  grid-row: span 2;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.dest-card:hover img {
  transform: scale(1.05);
}
.dest-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.08) 60%,
    transparent 100%
  );
}
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1.25rem;
}
.dest-name {
  font-family: var(--display);
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
}
.dest-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ── TESTIMONIALS ── */
#testimonios {
  background: var(--off);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.testi-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(230, 228, 222, 0.8);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(13, 51, 82, 0.09);
}
.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}
.testi-text {
  font-size: 0.855rem;
  color: var(--text);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-size: 0.83rem;
  font-weight: 500;
  display: block;
}
.author-sub {
  font-size: 0.68rem;
  color: var(--hint);
  display: block;
}

/* ── FAQ — accordion-05 style ── */
#faq {
  background: var(--white);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}
.faq-aside {
  position: sticky;
  top: 6rem;
}
.faq-list {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 1rem 0 1rem 1.5rem;
  color: rgba(14, 14, 14, 0.2);
  transition: color 0.25s;
  font-family: var(--sans);
}
.faq-trigger:hover,
.faq-trigger[aria-expanded="true"] {
  color: var(--ocean);
}
.faq-item-num {
  font-size: 0.7rem;
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 0.45rem;
  color: inherit;
  transition: color 0.25s;
}
.faq-item-q {
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: inherit;
  transition: color 0.25s;
}
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.9;
}
.faq-body.open {
  max-height: 180px;
  padding: 0.2rem 0 1.1rem 3.5rem;
}

/* ── CTA ── */
#cta {
  background: var(--ocean);
  text-align: center;
}
.cta-eye {
  padding-top: 0.7rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1rem;
}
.cta-h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.cta-h2 em {
  font-style: italic;
  color: #5dd3f3;
}
.cta-p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--ocean);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-white:hover {
  background: #e6f6fb;
}
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-ghost-white:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* ── FOOTER ── */
footer {
  background: #070e14;
  padding: 4rem 2.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.f-logo {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: white;
  display: block;
  margin-bottom: 0.85rem;
}
.f-logo span {
  color: var(--aqua);
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.37);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.f-socials {
  display: flex;
  gap: 0.5rem;
}
.f-soc {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  text-decoration: none;
  transition: all 0.2s;
}
.f-soc:hover {
  border-color: var(--aqua);
  color: var(--aqua);
}
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 55vh;
    padding: 4rem 1.5rem 2rem;
  }
  .hero-img-side {
    display: none;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-aside {
    position: static;
  }
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest-card.tall {
    grid-row: span 1;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-menu-btn {
    display: flex;
  }

  .fleet-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .fleet-grid,
  .exp-grid,
  .how-grid,
  .dest-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .card-actions {
    flex-wrap: wrap;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    min-height: 50vh;
    padding: 3.5rem 1.25rem 2rem;
  }
  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    margin-bottom: 0.75rem;
  }
  .hero-desc {
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
  }
  .hero-eyebrow {
    margin-bottom: 0.75rem;
  }
  .hero-trust {
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

/* ── WA SVG PATH (reused) ── */
