:root {
  --navy: #0B2239;
  --navy-2: #12324f;
  --blue: #1479A8;
  --blue-dark: #0f6288;
  --sky: #EAF5F8;
  --ink: #1C2935;
  --muted: #62717E;
  --line: #dce6ef;
  --warm: #D9A65A;
  --soft: #F8FAFB;
  --white: #fff;
  --shadow: 0 14px 34px rgba(8, 35, 63, .10);
  --shadow-hover: 0 18px 42px rgba(8, 35, 63, .15);
  --radius: 8px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-size: 16.5px;
}
body.modal-open,
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(220, 230, 239, .86);
  box-shadow: 0 8px 24px rgba(8, 35, 63, .07);
  backdrop-filter: blur(12px);
  transition: box-shadow .2s ease, background .2s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-size: .75rem;
  letter-spacing: .08em;
}
.brand-text { font-size: 1.12rem; letter-spacing: 0; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}
.site-nav a,
.nav-parent {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  text-decoration: none;
  padding: 12px 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  cursor: pointer;
  border-radius: var(--radius);
  transition: background .18s ease, color .18s ease;
}
.nav-parent::after {
  content: "";
  width: 11px;
  height: 11px;
  background: currentColor;
  opacity: .72;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 7.5 5 5 5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 7.5 5 5 5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.site-nav a:hover,
.nav-parent:hover,
.site-nav a:focus-visible,
.nav-parent:focus-visible {
  background: var(--sky);
  color: var(--blue-dark);
  outline: none;
}
.nav-group { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 238px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-group:hover .dropdown,
.nav-group.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a { display: block; padding: 10px 12px; }

.btn,
button.btn,
.route-card button,
.cards button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  padding: 11px 17px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn-primary,
.route-card button,
.cards button {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(18, 111, 174, .20);
}
.btn-primary:hover,
.route-card button:hover,
.cards button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(255, 255, 255, .72);
}
.btn-secondary {
  background: var(--sky);
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #dceff6;
  transform: translateY(-1px);
}
.nav-cta { margin-left: 8px; padding-inline: 16px; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 72px clamp(18px, 5vw, 72px);
  color: #fff;
  background-color: var(--navy);
  background-image: linear-gradient(90deg, rgba(5, 24, 43, .70), rgba(5, 24, 43, .28)), var(--hero-image);
  background-size: cover;
  background-position: center;
}
.home-hero {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 458px);
  gap: clamp(24px, 4vw, 44px);
}
.inner-hero { min-height: 390px; }
.hero-content { position: relative; max-width: 740px; }
.eyebrow {
  margin: 0 0 10px;
  color: #f0b862;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
}
.hero h1 {
  margin: 0 0 18px;
  max-width: 780px;
  font-size: clamp(2.1rem, 4.7vw, 4.15rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.inner-hero h1 { font-size: clamp(2rem, 3.7vw, 3.25rem); }
.hero p { max-width: 670px; font-size: clamp(1rem, 1.4vw, 1.12rem); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  font-size: .9rem;
}
.breadcrumbs a { color: #fff; }

.search-panel,
.quote-form,
.contact-form {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(220, 230, 239, .92);
  border-radius: var(--radius);
}
.quote-form { padding: 22px; }
.modal-panel .quote-form {
  padding: 0;
  border: 0;
}
.search-panel {
  position: relative;
  padding: 24px;
  box-shadow: var(--shadow);
}
.search-panel h2 { margin: 0 0 16px; font-size: 1.24rem; color: var(--navy); }
.search-panel p { color: var(--muted); font-size: .92rem; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label {
  display: grid;
  gap: 6px;
  min-width: 0;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  transition: border .18s ease, box-shadow .18s ease;
}
textarea { resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 111, 174, .16);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}
.trust-bar div {
  background: #fff;
  padding: 20px;
  text-align: center;
  color: var(--navy);
}
.section { padding: 72px clamp(18px, 5vw, 72px); }
.section.soft { background: var(--soft); }
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.section h2,
.cta-band h2,
.final-cta h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: 0;
}
.cards,
.process-grid,
.image-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.cards article,
.package-card,
.route-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 35, 63, .045);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cards article,
.route-card { padding: 22px; }
.cards article:hover,
.package-card:hover,
.route-card:hover,
.image-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd9e5;
}
.cards h3,
.package-card h3,
.route-card h3,
.image-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}
.image-card,
.package-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.image-card img,
.package-card img {
  width: 100%;
  height: 206px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: var(--sky);
}
.image-card div,
.package-card div { padding: 18px; }
.image-card a,
.text-link {
  color: var(--blue-dark);
  font-weight: 800;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background-color: var(--sky);
}
.step {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--blue-dark);
  font-weight: 900;
}
.cta-band,
.final-cta {
  padding: 58px clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.final-cta { background: var(--blue-dark); }
.cta-band h2,
.final-cta h2 { color: #fff; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 18px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
  padding: 17px 0;
}
.notice {
  border-left: 4px solid var(--warm);
  background: #fff8ea;
  padding: 14px 16px;
  border-radius: var(--radius);
}
.check-list { padding-left: 20px; }
.timeline {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
}
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--soft);
}
.contact-card p { margin: 0 0 12px; }
.address {
  font-style: normal;
  color: inherit;
  line-height: 1.55;
}

.site-footer {
  background: #061a30;
  color: #d7e5f2;
  padding: 52px clamp(18px, 5vw, 72px) 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(120px, 1fr)) 1.25fr;
  gap: 24px;
  align-items: start;
}
.site-footer a {
  display: block;
  margin: 7px 0;
  color: #d7e5f2;
  text-decoration: none;
}
.site-footer a:hover { color: #fff; }
.site-footer h3 { margin: 0 0 10px; color: #fff; font-size: 1rem; }
.site-footer p { margin-top: 0; }
.site-footer .address {
  margin-top: 12px;
  color: #b8c7d8;
  font-size: .95rem;
}
.footer-brand { margin-bottom: 12px; color: #fff; }
.footer-disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #b8c7d8;
}
.copyright { color: #b8c7d8; }

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 15, 28, .66);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.quote-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-panel {
  position: relative;
  z-index: 1001;
  width: min(880px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .28);
  transform: translateY(8px) scale(.985);
  transition: transform .18s ease;
  pointer-events: auto;
}
.quote-modal.is-open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: sticky;
  top: 0;
  z-index: 1002;
  float: right;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: -12px -12px 4px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(8, 35, 63, .08);
}
.modal-close:hover,
.modal-close:focus-visible {
  background: var(--sky);
  outline: none;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0;
}
.check input { width: auto; min-height: 0; margin-top: 5px; }
.form-status { min-height: 1.2em; font-weight: 800; color: var(--blue-dark); }

.back-top {
  position: fixed;
  right: 24px;
  z-index: 80;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.back-top {
  bottom: 160px;
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}
.back-top.show { display: block; }
.mobile-action-bar { display: none; }
.sitemap-list { columns: 2; }
.center { text-align: center; }
.center-actions { justify-content: center; }

.ui-icon,
.field-icon::before,
.float-call::before,
.float-wa::before,
.mobile-action-bar a::before,
.mobile-action-bar button::before,
.site-footer a[href^="tel:"]::before,
.site-footer a[href^="mailto:"]::before,
.site-footer .address::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: currentColor;
  vertical-align: -3px;
  content: "";
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}
.icon-phone,
.float-call,
.site-footer a[href^="tel:"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.58 2.61a2 2 0 0 1-.45 2.11L8 9.67a16 16 0 0 0 6.33 6.33l1.23-1.24a2 2 0 0 1 2.11-.45c.84.26 1.71.46 2.61.58A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.icon-whatsapp,
.float-wa { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='black'%3E%3Cpath d='M16.02 3.2A12.7 12.7 0 0 0 5.1 22.35L3.6 28.8l6.61-1.5A12.72 12.72 0 1 0 16.02 3.2zm0 22.97c-2.05 0-3.95-.6-5.56-1.64l-.4-.25-3.92.89.88-3.82-.27-.42a10.25 10.25 0 1 1 9.27 5.24zm5.92-7.66c-.32-.16-1.9-.94-2.2-1.05-.3-.11-.52-.16-.74.16-.22.32-.85 1.05-1.04 1.27-.19.22-.38.24-.7.08-.32-.16-1.36-.5-2.6-1.6-.96-.86-1.6-1.92-1.8-2.24-.19-.32-.02-.5.14-.65.15-.14.32-.38.48-.57.16-.19.22-.32.32-.54.11-.22.05-.4-.03-.57-.08-.16-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56h-.63c-.22 0-.57.08-.86.4-.3.32-1.13 1.1-1.13 2.68s1.16 3.12 1.32 3.33c.16.22 2.28 3.48 5.52 4.88.77.33 1.37.53 1.84.68.77.24 1.48.21 2.04.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.4.19-1.53-.08-.14-.3-.22-.62-.38z'/%3E%3C/svg%3E"); }
.icon-plane { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.5 4.5 21 3l-1.5 10.5-4-4-5.7 5.7-3-3 5.7-5.7-2-2z'/%3E%3Cpath d='m3 21 5.2-5.2'/%3E%3C/svg%3E"); }
.icon-route { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='19' r='3'/%3E%3Ccircle cx='18' cy='5' r='3'/%3E%3Cpath d='M9 19h4a5 5 0 0 0 0-10h-2a5 5 0 0 1 0-10h4' transform='translate(0 5)'/%3E%3C/svg%3E"); }
.icon-location,
.site-footer .address { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.icon-calendar { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E"); }
.icon-users { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.icon-seat { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3v8a4 4 0 0 0 4 4h6'/%3E%3Cpath d='M5 21h14'/%3E%3Cpath d='M7 15v6'/%3E%3Cpath d='M17 15v6'/%3E%3Cpath d='M11 3h4a3 3 0 0 1 3 3v5'/%3E%3C/svg%3E"); }
.icon-email,
.site-footer a[href^="mailto:"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }
.icon-beach { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 19c3-2 6-2 9 0s6 2 9 0'/%3E%3Cpath d='M12 19V7'/%3E%3Cpath d='M5 10c4-5 10-5 14 0-5-1-9-1-14 0z'/%3E%3C/svg%3E"); }
.icon-heart { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.8 4.6a5.5 5.5 0 0 0-7.8 0L12 5.6l-1-1a5.5 5.5 0 0 0-7.8 7.8l1 1L12 21l7.8-7.6 1-1a5.5 5.5 0 0 0 0-7.8z'/%3E%3C/svg%3E"); }
.icon-star { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 3.1 6.3 6.9 1-5 4.9 1.2 6.8L12 17.8 5.8 21 7 14.2 2 9.3l6.9-1L12 2z'/%3E%3C/svg%3E"); }
.icon-compass { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m16 8-2.2 5.8L8 16l2.2-5.8L16 8z'/%3E%3C/svg%3E"); }
.icon-building { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16'/%3E%3Cpath d='M16 8h2a2 2 0 0 1 2 2v11'/%3E%3Cpath d='M8 7h4M8 11h4M8 15h4M3 21h18'/%3E%3C/svg%3E"); }

.refined-hero {
  min-height: clamp(680px, 78vh, 820px);
  padding: 0 clamp(24px, 4vw, 32px);
  overflow: hidden;
  grid-template-columns: none;
  gap: 0;
  background-image: linear-gradient(90deg, rgba(6, 23, 39, .68), rgba(6, 23, 39, .32) 48%, rgba(6, 23, 39, .48)), var(--hero-image);
  background-position: center 48%;
}
.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: clamp(48px, 5vw, 72px);
  align-items: center;
}
.hero-inner > * {
  min-width: 0;
}
.refined-hero .hero-content {
  max-width: 700px;
  min-width: 0;
}
.refined-hero h1 {
  max-width: 620px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: .99;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -.018em;
  word-break: normal;
  overflow-wrap: normal;
}
.refined-hero .hero-content > p:not(.eyebrow):not(.hero-support) {
  max-width: 520px;
  color: rgba(255, 255, 255, .90);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
}
.hero-support {
  margin-top: 22px;
  color: rgba(255, 255, 255, .76);
  font-size: .95rem;
}
.travel-widget {
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 500px;
  min-width: 0;
  padding: 28px;
  border-radius: 16px;
  background: rgba(248, 250, 251, .98);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 28px 70px rgba(4, 20, 34, .25);
}
.travel-widget h2 {
  font-size: 1.55rem;
  margin-bottom: 6px;
}
.widget-kicker {
  margin: 0 0 7px;
  color: var(--warm);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.widget-intro {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .94rem;
}
.travel-widget .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.travel-widget label {
  position: relative;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .01em;
}
.field-icon::before {
  position: absolute;
  left: 13px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  color: var(--blue-dark);
  opacity: .74;
  pointer-events: none;
}
.field-icon input,
.field-icon select { padding-left: 38px; }
.travel-widget input,
.travel-widget select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  background: #fff;
  border-color: #d8e3eb;
}
.travel-widget .btn { width: 100%; margin-top: 16px; min-height: 50px; }
.form-helper {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}
.section-heading p:not(.eyebrow) {
  margin-top: -8px;
  color: var(--muted);
}
.refined-trust {
  max-width: 1180px;
  margin: -38px auto 0;
  position: relative;
  z-index: 5;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(8, 35, 63, .10);
  background: #fff;
}
.refined-trust div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
  padding: 18px;
  color: var(--navy);
}
.refined-trust .ui-icon {
  color: var(--blue-dark);
  opacity: .86;
}

.routes-section { background: #fff; }
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.route-tile {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fbfdfe);
  box-shadow: 0 8px 20px rgba(8, 35, 63, .045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.route-tile:hover {
  transform: translateY(-2px);
  border-color: #c9d9e5;
  box-shadow: 0 14px 32px rgba(8, 35, 63, .08);
}
.route-tile > .ui-icon {
  color: var(--warm);
  margin-bottom: 14px;
}
.route-tile h3 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.6vw, 1.38rem);
  line-height: 1.2;
}
.route-tile h3 b {
  color: var(--blue-dark);
  font-weight: 800;
}
.route-tile p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .93rem;
}
.route-tile button,
.editorial-grid button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-dark);
  font: 850 .92rem/1.2 inherit;
  cursor: pointer;
}

.destinations-showcase { background: var(--soft); }
.destination-grid .destination-card {
  border: 0;
  box-shadow: 0 10px 28px rgba(8, 35, 63, .08);
}
.destination-card img {
  height: auto;
  aspect-ratio: 4 / 5;
  background-color: var(--sky);
  transition: transform .35s ease;
}
.destination-card:hover img { transform: scale(1.035); }
.destination-card p {
  min-height: 3.2em;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .94rem;
}

.packages-section { background: #fff; }
.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(8, 35, 63, .08);
}
.product-card img {
  height: 238px;
  background-color: var(--sky);
}
.product-card .duration {
  margin: -2px 0 12px;
  color: var(--muted);
  font-weight: 750;
}
.product-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.travel-types-section {
  background: linear-gradient(180deg, var(--soft), #fff);
}
.travel-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.travel-type-grid article {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 84px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.travel-type-grid .ui-icon {
  width: 22px;
  height: 22px;
  color: var(--blue-dark);
}
.travel-type-grid h3 { margin: 0; font-size: 1.02rem; color: var(--navy); }

.personal-split {
  grid-template-columns: .95fr 1.05fr;
}
.personal-split h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  line-height: 1.15;
}
.personal-split > img {
  aspect-ratio: 5 / 4;
  border-radius: 16px;
  background-color: var(--sky);
}
.mini-points {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}
.mini-points p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  font-weight: 800;
  color: var(--navy);
}
.mini-points .ui-icon { color: var(--warm); }

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}
.process-line article {
  position: relative;
  padding: 0 10px;
  text-align: center;
}
.process-line span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 0 8px var(--soft);
}
.process-line h3 { margin: 0 0 8px; color: var(--navy); }
.process-line p { margin: 0; color: var(--muted); font-size: .94rem; }

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.editorial-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(8, 35, 63, .06);
}
.editorial-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background-color: var(--sky);
}
.editorial-grid div { padding: 20px; }
.editorial-grid h3 { margin: 0 0 10px; color: var(--navy); line-height: 1.25; }
.editorial-grid p:not(.eyebrow) { color: var(--muted); font-size: .95rem; }

.faq-section .faq-list details {
  border-radius: 14px;
  padding: 0 22px;
  box-shadow: 0 8px 20px rgba(8, 35, 63, .035);
}
.faq-section .faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}
.faq-section .faq-list summary::-webkit-details-marker { display: none; }
.faq-section .faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-dark);
  font-weight: 900;
}
.faq-section .faq-list details[open] summary::after { content: "-"; }

.photo-cta {
  position: relative;
  background-image: linear-gradient(90deg, rgba(7, 28, 47, .78), rgba(7, 28, 47, .42)), var(--cta-image);
  background-size: cover;
  background-position: center;
  text-align: left;
}
.photo-cta .container {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.photo-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
}
.photo-cta .hero-actions { justify-content: flex-start; }

.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.floating-action {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .16);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.floating-action.call { background: #0A84D0; }
.floating-action.whatsapp { background: #25D366; }
.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .20);
  outline: none;
}
.floating-action.call:hover,
.floating-action.call:focus-visible { background: #086FAE; }
.floating-action.whatsapp:hover,
.floating-action.whatsapp:focus-visible { background: #1DB954; }
.floating-action:focus-visible {
  outline: 3px solid rgba(20, 121, 168, .32);
  outline-offset: 4px;
}
.float-call::before,
.float-wa::before {
  display: block;
  width: 23px;
  height: 23px;
  color: #fff;
  margin: 0;
}
.mobile-action-bar a,
.mobile-action-bar button {
  display: grid;
  justify-items: center;
  gap: 4px;
}
.mobile-action-bar a::before,
.mobile-action-bar button::before {
  width: 17px;
  height: 17px;
  color: currentColor;
}
.mobile-action-bar a[href^="tel:"]::before { --icon: var(--icon-phone); }
.mobile-action-bar a:nth-child(2)::before { --icon: var(--icon-whatsapp); }
.mobile-action-bar button::before { --icon: var(--icon-route); }
.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer .address {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

:root {
  --icon-phone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.58 2.61a2 2 0 0 1-.45 2.11L8 9.67a16 16 0 0 0 6.33 6.33l1.23-1.24a2 2 0 0 1 2.11-.45c.84.26 1.71.46 2.61.58A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  --icon-whatsapp: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='black'%3E%3Cpath d='M16.02 3.2A12.7 12.7 0 0 0 5.1 22.35L3.6 28.8l6.61-1.5A12.72 12.72 0 1 0 16.02 3.2zm0 22.97c-2.05 0-3.95-.6-5.56-1.64l-.4-.25-3.92.89.88-3.82-.27-.42a10.25 10.25 0 1 1 9.27 5.24zm5.92-7.66c-.32-.16-1.9-.94-2.2-1.05-.3-.11-.52-.16-.74.16-.22.32-.85 1.05-1.04 1.27-.19.22-.38.24-.7.08-.32-.16-1.36-.5-2.6-1.6-.96-.86-1.6-1.92-1.8-2.24-.19-.32-.02-.5.14-.65.15-.14.32-.38.48-.57.16-.19.22-.32.32-.54.11-.22.05-.4-.03-.57-.08-.16-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56h-.63c-.22 0-.57.08-.86.4-.3.32-1.13 1.1-1.13 2.68s1.16 3.12 1.32 3.33c.16.22 2.28 3.48 5.52 4.88.77.33 1.37.53 1.84.68.77.24 1.48.21 2.04.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.4.19-1.53-.08-.14-.3-.22-.62-.38z'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
