/* ---------------------------------- */
/* Design tokens                      */
/* ---------------------------------- */
:root {
  --navy: #0b2c55;
  --navy-deep: #071a33;
  --gold: #d8a31a;
  --gold-deep: #a97e10;
  --gold-soft: rgba(216, 163, 26, 0.16);

  --bg-color: #fdfbf7;
  --surface-color: #f4efe6;
  --line: rgba(11, 44, 85, 0.12);
  --text-dark: #0b1a2e;
  --text-light: #5c6472;
  --extra-light: var(--surface-color);
  --white: #ffffff;

  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --max-width: 1200px;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 12px 32px rgba(11, 26, 46, 0.08);
  --shadow-card: 0 24px 60px rgba(11, 26, 46, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  color-scheme: light;
}

:root[data-theme="dark"] {
  --navy: #1a4a86;
  --navy-deep: #05122a;
  --gold: #e6bb47;
  --gold-deep: #cf9f21;
  --gold-soft: rgba(230, 187, 71, 0.14);

  --bg-color: #070e18;
  --surface-color: #101c2c;
  --line: rgba(255, 255, 255, 0.1);
  --text-dark: #eef3ff;
  --text-light: #9fadc4;

  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.55);

  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease);
}

a:hover {
  color: var(--gold-deep);
}

ul {
  list-style: none;
}

h1,
h2,
h4,
.logo,
.banner__card h4,
.testimonial__card p {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
}

::selection {
  background: var(--gold);
  color: #1b1402;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 999;
  padding: 0.6rem 1rem;
  background-color: var(--navy);
  color: var(--white);
  border-radius: 0.5rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------------------------------- */
/* Loader + scroll progress           */
/* ---------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background-color: var(--navy-deep);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader__inner {
  display: grid;
  justify-items: center;
  gap: 1.25rem;
}

.loader__mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.loader__bar {
  display: block;
  width: 140px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.loader__bar i {
  display: block;
  width: 40%;
  height: 100%;
  background-color: var(--gold);
  animation: loadSweep 1.1s ease-in-out infinite;
}

@keyframes loadSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

.scroll__progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background-image: linear-gradient(90deg, var(--navy), var(--gold));
}

/* ---------------------------------- */
/* Reveal system                      */
/* ---------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0ms) + var(--word-delay, 0ms));
}

[data-split].is-visible .word > span {
  transform: none;
}

/* ---------------------------------- */
/* Shared bits                        */
/* ---------------------------------- */
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5.5rem 1.25rem;
}

.section__tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section__tag--center {
  display: block;
  text-align: center;
}

.section__header {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem);
  color: var(--text-dark);
  text-align: center;
  line-height: 1.12;
  text-wrap: pretty;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
  line-height: 1.7;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  overflow: hidden;
  outline: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--navy);
  border-radius: 5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.35s var(--ease);
  cursor: pointer;
}

.btn:hover {
  color: var(--white);
  background-color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(11, 44, 85, 0.28);
}

.btn__lg {
  padding: 1.05rem 2.2rem;
}

.btn__shine::after {
  position: absolute;
  content: "";
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background-image: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.7s var(--ease);
}

.btn__shine:hover::after {
  left: 130%;
}

.logo {
  display: inline-flex;
  gap: 0.35em;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.logo span {
  color: var(--gold);
}

/* ---------------------------------- */
/* Navigation                         */
/* ---------------------------------- */
nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 40;
}

.nav__header {
  padding: 1rem 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background-color: var(--navy-deep);
}

.nav__logo .logo {
  font-size: 1.35rem;
  color: var(--white);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

.theme__toggle {
  border: 1px solid transparent;
  background-color: var(--gold);
  color: #1b1402;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.4s var(--ease);
}

.theme__toggle:hover {
  background-color: var(--gold-deep);
  color: #fff8e6;
  transform: rotate(180deg);
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.75rem;
  background-color: var(--navy-deep);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.nav__links a::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.4s var(--ease);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__btns {
  display: none;
}

/* ---------------------------------- */
/* Hero                               */
/* ---------------------------------- */
header {
  margin-top: 4.75rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
}

.header__bg {
  position: absolute;
  inset: 0 1rem;
  border-radius: 2rem;
  overflow: hidden;
  z-index: -1;
}

.header__bg__image {
  position: absolute;
  inset: -8%;
  background-image: url(img/background6.jpg);
  background-position: center;
  background-size: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  0% { transform: scale(1.02) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}

.header__bg__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 26, 51, 0.62) 0%,
    rgba(7, 26, 51, 0.28) 38%,
    rgba(253, 251, 247, 0.9) 88%,
    var(--bg-color) 100%
  );
}

:root[data-theme="dark"] .header__bg__veil {
  background: linear-gradient(
    180deg,
    rgba(4, 10, 20, 0.72) 0%,
    rgba(4, 10, 20, 0.5) 38%,
    rgba(7, 14, 24, 0.94) 88%,
    var(--bg-color) 100%
  );
}

.header__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.header__container {
  display: grid;
}

.header__content {
  padding: 4rem 1rem 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff6e0;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5rem;
  backdrop-filter: blur(6px);
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--gold);
  box-shadow: 0 0 0 0 rgba(216, 163, 26, 0.7);
  animation: ping 2.4s ease-out infinite;
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(216, 163, 26, 0.7); }
  70%, 100% { box-shadow: 0 0 0 12px rgba(216, 163, 26, 0); }
}

.header__content h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 1.6rem + 4vw, 5rem);
  color: #fffdf8;
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(4, 14, 30, 0.45);
}

/* Route strip: signature animated motif */
.route__strip {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 420px;
  margin: 0 0 2rem;
  height: 2rem;
}

.route__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.65) 0 10px, transparent 10px 18px);
}

.route__line--fill {
  right: auto;
  width: 0;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 18px);
  animation: fillRoute 5s ease-in-out infinite;
}

@keyframes fillRoute {
  0% { width: 4%; }
  50% { width: 96%; }
  100% { width: 4%; }
}

.route__dot {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  border: 2px solid var(--gold);
}

.route__dot--start { left: 0; }
.route__dot--end { right: 0; }

.route__bus {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: var(--white);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  animation: drive 5s ease-in-out infinite;
}

@keyframes drive {
  0% { left: 4%; }
  50% { left: 96%; }
  100% { left: 4%; }
}

.header__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__btns a.btn__secondary {
  position: relative;
  padding: 0.9rem;
  font-size: 1.5rem;
  color: var(--navy);
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: var(--shadow-soft);
}

.header__btns a.btn__secondary:hover {
  color: var(--white);
  background-color: var(--navy);
}

.pulse__ring {
  position: absolute;
  inset: 0;
  border-radius: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  animation: ringOut 2.6s ease-out infinite;
}

@keyframes ringOut {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

.header__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f4f1e8;
}

.header__trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header__trust i {
  color: var(--gold);
}

.header__image img {
  filter: drop-shadow(0 30px 34px rgba(6, 25, 51, 0.35));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.scroll__hint {
  display: none;
}

/* ---------------------------------- */
/* Marquee                            */
/* ---------------------------------- */
.marquee {
  padding: 1.1rem 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background-color: var(--surface-color);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: scrollX 26s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-dark);
}

.marquee__group i {
  font-size: 0.6rem;
  color: var(--gold);
}

@keyframes scrollX {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------------------------------- */
/* Destinations                       */
/* ---------------------------------- */
.section__head {
  display: grid;
  gap: 1rem;
}

.destination__container .section__header {
  text-align: left;
  margin-bottom: 0;
}

.destination__container .section__description {
  text-align: left;
  margin-inline: 0;
}

.destination__grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem 1.5rem;
}

.destination__card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease);
}

.destination__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.destination__media::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 26, 51, 0.55));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.destination__card:hover .destination__media::after {
  opacity: 1;
}

.destination__media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.destination__card:hover .destination__media img {
  transform: scale(1.07);
}

.destination__ratings {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 6px 13px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1b1402;
  background-color: var(--gold);
  border-radius: 1rem;
  transition: transform 0.4s var(--ease);
}

.destination__card:hover .destination__ratings {
  transform: translateY(-3px);
}

.destination__card__details {
  padding: 1.1rem 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.destination__card__details h4 {
  margin-bottom: 4px;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.destination__card__details p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.destination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.1rem;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 100%;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}

.destination__card:hover .destination__arrow {
  color: var(--white);
  background-color: var(--navy);
  transform: rotate(45deg);
}

/* ---------------------------------- */
/* Journey                            */
/* ---------------------------------- */
.journey__line {
  position: relative;
  height: 2rem;
  margin: 2.5rem 0 -0.5rem;
}

.journey__line__track,
.journey__line__fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg, var(--line) 0 12px, transparent 12px 22px);
}

.journey__line__track {
  right: 0;
}

.journey__line__fill {
  width: calc(var(--p, 0) * 100%);
  background-image: repeating-linear-gradient(90deg, var(--gold) 0 12px, transparent 12px 22px);
  transition: width 0.25s linear;
}

.journey__line__bus {
  position: absolute;
  top: 50%;
  left: calc(var(--p, 0) * 100%);
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  color: var(--gold);
  transition: left 0.25s linear, opacity 0.4s ease;
  opacity: var(--p, 0);
}

.journey__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.journey__card {
  position: relative;
  isolation: isolate;
  padding-top: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.journey__card__bg {
  padding: 2rem;
  height: 100%;
  background-color: var(--extra-light);
  border: 1px solid var(--line);
  border-bottom-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.journey__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
}

.journey__icon {
  display: inline-block;
  margin: 1.5rem 0 2rem;
  font-size: 1.75rem;
  color: var(--gold);
}

.journey__card__bg h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--navy);
  border-radius: var(--radius-md);
  transition: top 0.55s var(--ease);
}

.journey__card:hover .journey__card__content,
.journey__card:focus-within .journey__card__content {
  top: 0;
}

.journey__card__content span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 7px 9px;
  font-size: 1rem;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 100%;
}

.journey__card__content h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--white);
}

.journey__card__content p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

/* ---------------------------------- */
/* Showcase                           */
/* ---------------------------------- */
.showcase__container {
  display: grid;
  gap: 2.5rem;
}

.showcase__frame {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.showcase__frame img {
  transition: transform 1s var(--ease);
}

.showcase__frame:hover img {
  transform: scale(1.05);
}

.showcase__content h4 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem);
  color: var(--text-dark);
  line-height: 1.15;
}

.showcase__content p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.75;
}

.showcase__content .btn {
  width: 100%;
  margin-top: 2rem;
  padding: 1.4rem;
  font-weight: 700;
  color: var(--white);
  background-color: var(--navy);
  background-image: linear-gradient(120deg, rgba(6, 25, 51, 0.84), rgba(10, 42, 82, 0.68)), url(img/showcase2.jpeg);
  background-size: cover;
  background-position: center;
  border-radius: 0.85rem;
}

.showcase__content .btn:hover {
  background-size: 118%;
}

/* ---------------------------------- */
/* Banner / stats                     */
/* ---------------------------------- */
.banner__container {
  display: grid;
  gap: 1.5rem;
}

.banner__card {
  position: relative;
  padding: 2.4rem 1rem;
  text-align: center;
  background-color: var(--extra-light);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

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

.banner__card h4 {
  font-size: clamp(2.8rem, 2.1rem + 2.4vw, 4.2rem);
  line-height: 1;
  color: var(--gold);
}

.banner__card p {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ---------------------------------- */
/* Discover                           */
/* ---------------------------------- */
.discover__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.75rem;
}

.discover__card {
  padding: 2.25rem 1.25rem;
  text-align: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.discover__card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.discover__card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
  color: var(--gold);
  background-color: var(--gold-soft);
  border-radius: 100%;
  transition: transform 0.5s var(--ease);
}

.discover__card:hover span {
  transform: rotate(-8deg) scale(1.06);
}

.discover__card h4 {
  max-width: 240px;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.discover__card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------------------------------- */
/* Testimonials                       */
/* ---------------------------------- */
.testimonial__container {
  padding-bottom: 6rem;
}

.testimonial__swiper {
  margin-top: 3rem;
  padding-bottom: 3.5rem;
}

.testimonial__card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem;
  background-color: var(--extra-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.testimonial__quote {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--gold);
}

.testimonial__card p {
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}

.testimonial__card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial__card footer strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial__card footer span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.testimonial__swiper .swiper-pagination-bullet {
  background-color: var(--text-light);
  opacity: 0.4;
  transition: width 0.4s var(--ease), background-color 0.4s var(--ease);
}

.testimonial__swiper .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 5px;
  background-color: var(--gold);
  opacity: 1;
}

.testimonial__swiper .swiper-button-next,
.testimonial__swiper .swiper-button-prev {
  color: var(--navy);
  transition: transform 0.4s var(--ease);
}

.testimonial__swiper .swiper-button-next:hover { transform: translateX(4px); }
.testimonial__swiper .swiper-button-prev:hover { transform: translateX(-4px); }

:root[data-theme="dark"] .testimonial__swiper .swiper-button-next,
:root[data-theme="dark"] .testimonial__swiper .swiper-button-prev {
  color: var(--gold);
}

/* ---------------------------------- */
/* Footer                             */
/* ---------------------------------- */
footer {
  background-color: var(--extra-light);
  border-top: 1px solid var(--line);
}

.footer__container {
  display: grid;
  gap: 3rem 2rem;
}

.footer__col p {
  max-width: 320px;
  margin-block: 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.15rem;
  color: var(--white);
  background-color: var(--navy);
  border-radius: 100%;
  transition: background-color 0.3s ease, transform 0.4s var(--ease);
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--gold-deep);
  transform: translateY(-4px);
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--gold-deep);
  transform: translateX(3px);
}

.footer__links a span {
  font-size: 1.15rem;
  color: var(--gold);
}

.footer__col form {
  display: grid;
  gap: 0.75rem;
}

.footer__col input {
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--bg-color);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer__col input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
  outline: none;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 0.6rem;
}

.form__feedback {
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: var(--gold-deep);
}

.footer__bar {
  padding: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-light);
  text-align: center;
  border-top: 1px solid var(--line);
}

/* ---------------------------------- */
/* Floating actions                   */
/* ---------------------------------- */
.whatsapp__float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1.7rem;
  color: var(--white);
  background-color: #25d366;
  border-radius: 100%;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.4s var(--ease);
}

.whatsapp__float:hover {
  color: var(--white);
  transform: scale(1.08) rotate(-6deg);
}

.whatsapp__pulse {
  position: absolute;
  inset: 0;
  border-radius: 100%;
  background-color: rgba(37, 211, 102, 0.45);
  animation: ringOut 2.8s ease-out infinite;
}

.back__to__top {
  position: fixed;
  right: 1.25rem;
  bottom: 5.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.2rem;
  color: var(--white);
  background-color: var(--navy);
  border: none;
  border-radius: 100%;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.back__to__top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back__to__top:hover {
  background-color: var(--navy-deep);
  transform: translateY(-3px);
}

/* ---------------------------------- */
/* Responsive                         */
/* ---------------------------------- */
@media (width > 540px) {
  .destination__grid,
  .journey__grid,
  .banner__container,
  .discover__grid,
  .footer__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}

@media (width > 768px) {
  nav {
    position: fixed;
    padding: 1rem max(1.25rem, (100% - var(--max-width)) / 2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    transition: padding 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  }

  nav::before {
    position: absolute;
    content: "";
    inset: 0;
    background-color: color-mix(in oklab, var(--bg-color) 82%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: -1;
  }

  nav.scrolled::before {
    opacity: 1;
  }

  nav.scrolled {
    padding-block: 0.6rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo .logo {
    color: #fffdf8;
  }

  nav.scrolled .nav__logo .logo {
    color: var(--text-dark);
  }

  .nav__menu__btn {
    display: none;
  }

  .theme__toggle {
    order: 2;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    gap: 1.35rem;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: #f6f2e8;
  }

  nav.scrolled .nav__links a {
    color: var(--text-dark);
  }

  nav.scrolled .nav__links a:hover,
  nav.scrolled .nav__links a.active {
    color: var(--gold-deep);
  }

  .nav__btns {
    display: none;
  }

  header {
    margin-top: 0;
    min-height: 100vh;
    display: grid;
    align-items: center;
  }

  .header__container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 1rem;
  }

  .header__content {
    padding: 8rem 0 5rem;
  }

  .header__image {
    align-self: end;
    padding-bottom: 3rem;
  }

  .scroll__hint {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  .scroll__hint span {
    display: block;
    width: 1px;
    height: 32px;
    background-image: linear-gradient(var(--gold), transparent);
    animation: hintDrop 2.2s ease-in-out infinite;
  }

  @keyframes hintDrop {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
  }

  .section__head {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
    gap: 2rem;
  }

  .destination__grid,
  .journey__grid,
  .banner__container,
  .discover__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .showcase__container {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }

  .footer__container {
    grid-template-columns: 2fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }
}

@media (width > 1080px) {
  nav {
    gap: 2rem;
  }

  .nav__links {
    gap: 1.75rem;
  }

  .nav__btns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .word > span { transform: none; }
}
