/* ═══════════════════════════════════════════════════════════
   Albania Trip & Tour — navy · trust blue · sky
   ═══════════════════════════════════════════════════════════ */

:root {
  --ink: #0e1f33;        /* deep navy — dark sections */
  --ink-2: #132840;
  --blue: #1a56db;       /* primary action */
  --blue-deep: #1443ad;
  --blue-soft: #e8eefb;
  --sky: #7ea6f5;        /* light accent for dark backgrounds */
  --paper: #f8f9fb;      /* page background */
  --cloud: #eef2f7;      /* alt light section */
  --line: #e2e8f0;
  --text: #23303f;
  --text-soft: #5c6b7c;
  --white: #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Instrument Sans", "Helvetica Neue", sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -24px rgba(14, 31, 51, .35);
  --shadow-soft: 0 10px 30px -14px rgba(14, 31, 51, .16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}
.container--narrow { width: min(820px, 92%); }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .8em 1.6em;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 18px -6px rgba(26, 86, 219, .5);
}
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .5);
}
.btn--light:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .5); }
.btn--ghost {
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn--lg { font-size: 1rem; padding: .95em 2em; }

/* ── Top bar ─────────────────────────────── */
.topbar {
  background: var(--ink);
  color: #93a5bb;
  font-size: .8rem;
  padding: .55em 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar__note { letter-spacing: .02em; }
.topbar__contact { display: flex; align-items: center; gap: 1rem; }
.topbar__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #46597a;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  color: #d4deec;
  text-decoration: none;
  font-weight: 500;
  transition: color .15s ease;
}
.topbar a svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar a:hover { color: var(--sky); }
.topbar__stars {
  color: var(--sky);
  letter-spacing: .12em;
  font-size: .72rem;
}

/* ── Nav ─────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 74px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  margin-right: auto;
}
.nav__logo-mark { width: 38px; height: 38px; }
.logo-ring { stroke: var(--ink); stroke-width: 2; fill: none; }
.logo-road { stroke: var(--blue); stroke-width: 2.2; fill: none; stroke-linecap: round; }
.logo-sun { fill: var(--sky); }
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.nav__logo-text em { font-style: normal; color: var(--blue); }
.nav__links { display: flex; gap: 1.7rem; }
.nav__links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: .92rem;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; }

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}
.hero__scene { position: absolute; inset: 0; }
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(14, 31, 51, .25), rgba(14, 31, 51, .55) 75%, rgba(14, 31, 51, .92)),
    linear-gradient(100deg, rgba(14, 31, 51, .92) 0%, rgba(14, 31, 51, .62) 48%, rgba(14, 31, 51, .3) 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5.5rem 0 6rem;
}
.hero__eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky);
  border: 1px solid rgba(126, 166, 245, .4);
  padding: .5em 1.1em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin-bottom: 1.2rem;
}
.hero__title span { color: var(--sky); }
.hero__sub {
  font-size: 1.08rem;
  color: #b6c5d8;
  max-width: 32rem;
  margin-bottom: 1.7rem;
}
.hero__ticks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.6rem;
  font-size: .88rem;
  font-weight: 500;
  color: #d5e0ee;
}
.hero__ticks li {
  position: relative;
  padding-left: 1.1rem;
}
.hero__ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: .45rem; height: .45rem;
  border-radius: 50%;
  background: var(--sky);
}

/* ── Booking widget ──────────────────────── */
.booker {
  position: relative;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.booker::before {
  content: "";
  position: absolute;
  top: 0; left: 1.6rem; right: 1.6rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--blue);
}
.booker__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .2rem;
}
.booker__head h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}
.booker__badge {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  background: var(--blue-soft);
  padding: .45em .9em;
  border-radius: 999px;
}
.booker__field label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-soft);
  margin-bottom: .3rem;
}
.booker__control {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .35rem .85rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.booker__control:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .14);
}
.booker__ico {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--blue);
}
.booker__control select,
.booker__control input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  padding: .5em 0;
  outline: none;
  appearance: none;
}
.booker__swap {
  align-self: center;
  width: 34px; height: 34px;
  margin: -1.35rem 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.booker__swap svg { width: 16px; height: 16px; }
.booker__swap:hover { border-color: var(--blue); }
.booker__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.booker__submit { width: 100%; }
.booker__note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-soft);
}

/* ── Trust strip ─────────────────────────── */
.trust {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.7rem 0;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust__item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--sky);
}
.trust__item span { font-size: .8rem; color: #8fa1b8; }

/* ── Sections shared ─────────────────────── */
.section { padding: 5.5rem 0; }
.section--dark {
  background: var(--ink);
  color: #cbd7e5;
}
.section--dark .section__title { color: var(--white); }
.section--dark .section__sub { color: #8fa1b8; }
.section--dark .section__eyebrow { color: var(--sky); }
.section--sand { background: var(--cloud); }
.section__head {
  max-width: 42rem;
  margin-bottom: 3rem;
}
.section__eyebrow {
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue);
  margin-bottom: .7rem;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: .8rem;
}
.section__sub { color: var(--text-soft); font-size: 1rem; }

/* ── Routes ──────────────────────────────── */
.routes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1rem;
}
.route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: var(--text);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.route:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: var(--shadow-soft);
}
.route__path { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.route__cities {
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.route__cities .arr { color: var(--blue); }
.route__meta { font-size: .78rem; color: var(--text-soft); }
.route__cta {
  flex-shrink: 0;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--blue);
  white-space: nowrap;
}
.routes__more {
  margin-top: 1.8rem;
  text-align: center;
  color: var(--text-soft);
}
.routes__more a { color: var(--blue); font-weight: 600; }

/* ── Destinations ────────────────────────── */
.dest__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.dest__card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.dest__card:hover { transform: translateY(-4px); border-color: rgba(126, 166, 245, .5); }
.dest__art { aspect-ratio: 2 / 1; overflow: hidden; }
.dest__art svg { width: 100%; height: 100%; }
.dest__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transition: transform .45s ease;
}
.dest__card:hover .dest__art img { transform: scale(1.05); }
.dest__body { padding: 1.3rem 1.3rem 1.5rem; }
.dest__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.dest__body p { font-size: .9rem; color: #9cadc2; margin-bottom: .9rem; }
.dest__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.dest__tags li {
  font-size: .72rem;
  font-weight: 600;
  color: var(--sky);
  border: 1px solid rgba(126, 166, 245, .4);
  padding: .25em .8em;
  border-radius: 999px;
}

/* ── Fleet ───────────────────────────────── */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}
.fleet__card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fleet__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.fleet__card--hot { border-color: var(--blue); }
.fleet__flag {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 1;
  background: var(--blue);
  color: var(--white);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .45em 1.1em;
  border-radius: 999px;
  box-shadow: 0 4px 12px -4px rgba(26, 86, 219, .6);
}
/* illustration stage — also accepts a real photo (<img>) as a drop-in */
.fleet__stage {
  background: linear-gradient(165deg, #eef2f7, #dfe8f6);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 1.4rem .9rem;
}
.fleet__stage svg {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  transition: transform .35s cubic-bezier(.2, .7, .3, 1);
}
.fleet__card:hover .fleet__stage svg { transform: translateX(7px); }
.wheel { transform-box: fill-box; transform-origin: center; }
.fleet__card:hover .wheel { animation: wheelSpin 1s linear infinite; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }
.fleet__stage--photo {
  padding: 0;
  aspect-ratio: 25 / 14; /* matches the illustrated stages' height */
}
.fleet__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.fleet__card:hover .fleet__stage img { transform: scale(1.05); }
.fleet__body { padding: 1.4rem 1.6rem 1.6rem; }
.fleet__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: .7rem;
}
.fleet__specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .9rem;
}
.fleet__specs li {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35em .9em;
}
.fleet__specs svg { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.fleet__body > p {
  font-size: .92rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.fleet__link {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
  text-decoration: none;
}
.fleet__link:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .fleet__card:hover .wheel { animation: none; }
  .fleet__card:hover .fleet__stage svg { transform: none; }
}

/* ── Tours ───────────────────────────────── */
.tours__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.3rem;
}
.tour {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.5rem;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tour:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.tour__num {
  position: absolute;
  top: 1.1rem; right: 1.3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sky);
}
.tour h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: .5rem;
  padding-right: 2.5rem;
}
.tour p { font-size: .92rem; color: var(--text-soft); margin-bottom: 1rem; }
.tour__meta {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
}
.tours__cta { margin-top: 2.4rem; text-align: center; }

/* ── How it works ────────────────────────── */
.how__steps {
  list-style: none;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
/* connector line that draws itself across the badges on reveal */
.how__steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 9%;
  right: 9%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s cubic-bezier(.2, .7, .3, 1) .25s;
}
.how__steps:has(.is-in)::before { transform: scaleX(1); }
.how__step { padding-top: .4rem; }
.how__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  background: var(--paper);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  opacity: 0;
  transform: scale(.4);
  transition: opacity .4s ease, transform .55s cubic-bezier(.34, 1.56, .64, 1);
}
.how__step.is-in .how__badge { opacity: 1; transform: scale(1); }
.how__step:nth-child(1).is-in .how__badge { transition-delay: .15s; }
.how__step:nth-child(2).is-in .how__badge { transition-delay: .5s; }
.how__step:nth-child(3).is-in .how__badge { transition-delay: .85s; }
.how__icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: var(--blue);
  margin: 1.5rem 0 1.1rem;
  transition: transform .25s ease, border-color .25s ease;
}
.how__icon svg { width: 30px; height: 30px; }
.how__step:hover .how__icon {
  transform: translateY(-4px) rotate(-3deg);
  border-color: var(--sky);
}
.how__step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: .5rem;
}
.how__step p { color: var(--text-soft); font-size: .95rem; }
@media (prefers-reduced-motion: reduce) {
  .how__steps::before { transition: none; transform: scaleX(1); }
  .how__badge { opacity: 1; transform: none; transition: none; }
}

/* ── Reviews ─────────────────────────────── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.review {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.review__stars {
  display: block;
  color: var(--sky);
  letter-spacing: .2em;
  font-size: .85rem;
  margin-bottom: .9rem;
}
.review p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #e2eaf3;
  margin-bottom: 1.2rem;
}
.review footer { display: flex; flex-direction: column; }
.review footer strong { color: var(--white); font-size: .92rem; }
.review footer span { font-size: .78rem; color: #8fa1b8; }
.reviews__cta {
  margin-top: 2.6rem;
  text-align: center;
}
.g-icon { width: 20px; height: 20px; flex-shrink: 0; }
.reviews__hint {
  margin-top: .9rem;
  font-size: .82rem;
  color: #8fa1b8;
}

/* ── FAQ ─────────────────────────────────── */
.faq__list { display: flex; flex-direction: column; gap: .8rem; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq__item[open] { border-color: var(--blue); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.3rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--blue);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  padding: 0 1.3rem 1.2rem;
  color: var(--text-soft);
  font-size: .95rem;
}

/* ── Final CTA ───────────────────────────── */
.cta {
  background: linear-gradient(150deg, var(--ink-2), var(--ink) 60%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.015em;
  margin-bottom: .7rem;
}
.cta p { font-size: 1.08rem; color: #b6c5d8; margin-bottom: 2rem; }
.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────── */
.footer {
  background: #0a1727;
  color: #8fa1b8;
  padding: 4rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr .8fr 1.5fr .8fr 1.1fr;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__routes { column-count: 2; column-gap: 1.4rem; }
.footer__routes a { break-inside: avoid; }
.nav__logo-text--footer { font-size: 1.35rem; color: var(--white); display: inline-block; margin-bottom: .8rem; text-decoration: none; }
.nav__logo-text--footer em { color: var(--sky); }
.footer__brand p { font-size: .9rem; max-width: 22rem; }
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  font-size: .74rem;
  margin-bottom: 1rem;
}
.footer__col a, .footer__col span {
  display: block;
  color: #8fa1b8;
  text-decoration: none;
  font-size: .88rem;
  margin-bottom: .55rem;
}
.footer__col a:hover { color: var(--sky); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: 1.4rem;
  font-size: .78rem;
  color: #5c7089;
}

/* ── Route landing pages ─────────────────── */
.rp-hero {
  background: linear-gradient(150deg, var(--ink-2), var(--ink) 60%);
  color: var(--white);
  padding: 3.5rem 0 3.9rem;
}
.breadcrumb { font-size: .78rem; color: #8fa1b8; margin-bottom: 1.5rem; }
.breadcrumb a { color: #b6c5d8; text-decoration: none; }
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb span { color: var(--sky); }
.rp-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -.015em;
  line-height: 1.12;
  margin-bottom: .8rem;
}
.rp-hero h1 em { font-style: normal; color: var(--sky); }
.rp-hero__sub { color: #b6c5d8; max-width: 40rem; font-size: 1.05rem; margin-bottom: 1.3rem; }
.rp-facts { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.9rem; }
.rp-facts li {
  font-size: .76rem;
  font-weight: 600;
  color: var(--sky);
  border: 1px solid rgba(126, 166, 245, .4);
  border-radius: 999px;
  padding: .35em .95em;
}
.rp-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.prose { max-width: 46rem; }
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 2.2rem 0 .8rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 1.2rem; }
.prose li { margin-bottom: .45rem; }
.section--tight { padding: 3.8rem 0; }
.callout {
  background: var(--blue-soft);
  border: 1px solid rgba(26, 86, 219, .22);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
}
.callout p { margin: 0; }
.callout a { color: var(--blue); font-weight: 600; }

/* ── WhatsApp float ──────────────────────── */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, .5);
  transition: transform .18s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }

/* ── Scroll reveal ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══ Responsive ═══════════════════════════ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; padding: 3.5rem 0 4.5rem; }
  .hero__copy { text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__ticks { justify-content: center; }
  .booker { max-width: 480px; margin-inline: auto; width: 100%; }
  .trust__inner { grid-template-columns: repeat(3, 1fr); row-gap: 1.2rem; }
  .how__steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .how__steps::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }

  .nav__links {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: .5rem 0 1rem;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .8rem 6%; }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    padding: 0 9px;
  }
  .nav__burger span {
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 4rem 0; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .booker__row { grid-template-columns: 1fr; }
  .cta__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
