:root {
  --navy: #0B1F33;
  --navy-2: #123C55;
  --teal: #2E8B7D;
  --orange: #FF7A00;
  --orange-dark: #E86400;
  --paper: #F7FAFC;
  --mist: #E5E7EB;
  --text: #1d2a33;
  --muted: #62717c;
  --shadow: 0 18px 45px rgba(11, 31, 51, 0.14);
  --shadow-strong: 0 26px 70px rgba(11, 31, 51, 0.22);
  --orange-glow: 0 14px 34px rgba(255, 122, 0, 0.28);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.9), rgba(247, 250, 252, 0.76));
  backdrop-filter: blur(22px) saturate(1.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 14px 45px rgba(11, 31, 51, 0.08);
}

.topbar {
  background: linear-gradient(90deg, var(--navy), var(--navy-2) 55%, rgba(232, 100, 0, 0.96));
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 850;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.topbar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar-inner span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255,122,0,0.8);
}

.nav {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,122,0,0.86);
  box-shadow: 0 0 0 5px rgba(255,122,0,0.1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 700;
}
.nav-menu.open-static {
  display: flex;
}

.nav-menu a:not(.btn):hover { color: var(--teal); }
.nav-menu > a:not(.btn) {
  position: relative;
}
.nav-menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 7px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}
.nav-menu > a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(7, 27, 46, 0.12);
  background: white;
  border-radius: var(--radius);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  font-weight: 850;
  gap: 9px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(11, 31, 51, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 48%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow), var(--orange-glow); }
.btn-small { min-height: 40px; padding: 0 16px; }
.btn-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; }
.btn-light { background: rgba(255,255,255,0.92); color: var(--navy); }
.btn-dark { background: var(--navy); color: white; }
.btn-whatsapp { background: #188c57; color: white; }
.btn-border { border: 1px solid rgba(11,31,51,0.14); }

.hero {
  min-height: clamp(560px, calc(100vh - 156px), 730px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(120deg, rgba(11,31,51,0.84), rgba(18,60,85,0.34)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center/cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 24%, rgba(255,122,0,0.34), transparent 31%),
    radial-gradient(circle at 16% 82%, rgba(46,139,125,0.26), transparent 28%),
    linear-gradient(180deg, rgba(11,31,51,0.14), rgba(11,31,51,0.82));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(11,31,51,0.88));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 74px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6.2vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 18px 45px rgba(0,0,0,0.34);
}

.hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px auto 0;
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section { padding: 88px 0; }
.section-slim { padding: 28px 0; background: linear-gradient(90deg, var(--navy), var(--navy-2)); color: white; }

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.about h2,
.soon h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-copy { color: var(--muted); max-width: 720px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-grid div {
  display: grid;
  gap: 2px;
  text-align: center;
}

.stats-grid strong { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--orange); line-height: 1; }
.stats-grid span { color: rgba(255,255,255,0.8); font-weight: 700; }

.feature-grid,
.destination-grid,
.package-grid,
.testimonial-grid,
.steps-grid {
  display: grid;
  gap: 22px;
}

.feature-grid { grid-template-columns: repeat(5, 1fr); }
.destination-grid { grid-template-columns: repeat(3, 1fr); }
.package-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.steps-grid { grid-template-columns: repeat(4, 1fr); }

.feature-card,
.package-card,
.testimonial,
.step,
.empty-state {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(11, 31, 51, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(7,27,46,0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.package-card:hover,
.testimonial:hover,
.step:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,0,0.24);
  box-shadow: var(--shadow-strong);
}

.feature-card { padding: 24px; }
.feature-card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,122,0,0.16), rgba(46,139,125,0.12));
  color: var(--orange-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.feature-card h3,
.package-card h3,
.testimonial strong,
.step h3 {
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.18;
}

.feature-card p,
.package-card p,
.step p,
.testimonial p { margin: 0; color: var(--muted); }

.destinations,
.steps,
.contact {
  background:
    radial-gradient(circle at 12% 10%, rgba(255,122,0,0.08), transparent 28%),
    var(--mist);
}

.destination-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  align-items: flex-end;
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.destination-card:hover img { transform: scale(1.08); }

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(11,31,51,0.9));
}

.destination-card div {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: white;
}

.destination-card h3 { margin: 0 0 6px; font-size: 1.45rem; }
.destination-card p { margin: 0; color: rgba(255,255,255,0.82); }

.package-tools {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
}

.search-box,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.search-box input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(7, 27, 46, 0.14);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: white;
  color: var(--text);
  outline: none;
}

.search-box input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(255,122,0,0.13);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(7,27,46,0.12);
  background: white;
  color: var(--navy);
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.filter-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(11,31,51,0.1); }

.filter-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border-color: transparent;
}

.package-card { overflow: hidden; display: flex; flex-direction: column; }
.package-image-wrap { position: relative; overflow: hidden; }
.package-card img { height: 210px; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover img { transform: scale(1.07); }
.package-body { padding: 22px; display: grid; gap: 12px; flex: 1; }
.package-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255,122,0,0.14);
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 850;
}
.price { color: var(--navy); font-size: 1.18rem; font-weight: 900; }
.price-note,
.package-notes {
  font-size: 0.9rem;
  color: var(--muted);
}
.package-detail {
  display: grid;
  gap: 3px;
  padding-top: 8px;
  border-top: 1px solid rgba(11,31,51,0.08);
  color: var(--muted);
  font-size: 0.92rem;
}
.package-detail strong { color: var(--navy); }
.package-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}
.package-card .btn { width: 100%; }
.badge-featured {
  position: absolute;
  top: 14px;
  left: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(11,31,51,0.18);
}
.empty-state { padding: 28px; text-align: center; }

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, var(--orange), var(--teal), var(--navy));
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about p,
.contact-copy p,
.soon p { color: var(--muted); font-size: 1.04rem; }

.step { padding: 26px; position: relative; overflow: hidden; }
.step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--orange);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 18px;
}

.testimonial { padding: 28px; }
.testimonial p { font-size: 1.05rem; margin-bottom: 18px; }

.soon { padding-top: 0; }
.soon-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  background:
    radial-gradient(circle at 100% 0, rgba(255,122,0,0.32), transparent 36%),
    radial-gradient(circle at 0 100%, rgba(46,139,125,0.24), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.soon-panel h2 { color: white; }
.soon-panel p { color: rgba(255,255,255,0.76); max-width: 720px; }

.faq-list { display: grid; gap: 12px; }
details {
  background: white;
  border: 1px solid rgba(7,27,46,0.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(7,27,46,0.05);
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
}
details p { color: var(--muted); margin: 12px 0 0; }

.contact-form {
  display: grid;
  gap: 16px;
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-mail { color: var(--teal); font-weight: 900; overflow-wrap: anywhere; }
.contact-list { display: grid; gap: 8px; margin: 20px 0; }
.form-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hidden-field {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(247,250,252,0.76);
  color: var(--navy);
  border: 1px solid rgba(18,60,85,0.14);
  font-weight: 900;
}
.social-links a:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border-color: transparent;
  box-shadow: var(--orange-glow);
}
.social-links-large a {
  min-width: auto;
  padding: 0 16px;
}
.nav-social a {
  min-width: 32px;
  min-height: 32px;
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 40;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #188c57;
  color: white;
  font-weight: 950;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: var(--shadow-strong); }
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(24,140,87,0.28);
}

.footer {
  background: #061422;
  color: rgba(255,255,255,0.78);
  padding: 48px 0;
}

.legal-main {
  padding: 86px 0;
  background: var(--paper);
}
.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
  background: white;
  border: 1px solid rgba(11,31,51,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.legal-card h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}
.legal-card h2 {
  margin: 26px 0 8px;
  color: var(--navy);
}
.legal-card p,
.legal-card li { color: var(--muted); }
.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: rgba(255,122,0,0.12);
  color: var(--navy);
  font-weight: 800;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}
.footer h2,
.footer h3 { color: white; margin: 0 0 12px; }
.footer a { display: block; margin: 7px 0; color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--orange); }

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.icon-svg {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  fill: currentColor;
  flex: 0 0 auto;
}
.icon-large { width: 1.45em; height: 1.45em; }
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.contact-icon-link,
.footer-icon-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 50%;
  background: rgba(11,31,51,0.84);
  color: white;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: var(--orange-glow);
}

@media (max-width: 1040px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid,
  .package-grid,
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .topbar-inner {
    min-height: 34px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .topbar-inner::-webkit-scrollbar { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 110px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(247,250,252,0.96);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu.open-static {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }
  .nav-menu a { padding: 12px; }
  .nav-social { padding: 10px 12px; }
  .nav-menu .btn { margin-top: 8px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .package-tools,
  .about-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { min-height: clamp(560px, calc(100vh - 126px), 700px); }
}

@media (max-width: 600px) {
  .container,
  .hero-content { width: min(100% - 24px, 1160px); }
  .nav { width: calc(100% - 20px); }
  .brand span { font-size: 0.98rem; }
  .feature-grid,
  .destination-grid,
  .package-grid,
  .testimonial-grid,
  .steps-grid,
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.65rem; }
  .hero-actions .btn { width: 100%; }
  .destination-card { min-height: 260px; }
  .soon-panel { padding: 26px; align-items: stretch; flex-direction: column; }
  .contact-form { padding: 18px; }
  .form-actions .btn,
  .inline-actions .btn { width: 100%; }
  .whatsapp-float { width: 54px; height: 54px; right: 12px; bottom: 76px; }
  .back-to-top { width: 48px; height: 48px; right: 12px; bottom: 14px; }
  .legal-card { padding: 24px; }
}
