/* ============================================================
   TripCraft — Travel Landing Page
   Design tokens
   ============================================================ */
:root {
  /* navy palette */
  --navy-900: #0a1626;
  --navy-800: #0d1d33;
  --navy-700: #102844;
  --navy-glass: rgba(13, 29, 51, 0.55);

  /* accents */
  --gold: #e0b04a;
  --gold-2: #c8902f;
  --gold-soft: #f1cd7a;
  --teal: #2bb6c4;       /* logo teal */
  --teal-cta: #6fb7cb;   /* search button (muted/translucent teal) */
  --teal-cta-strong: #4f9db5;

  /* neutrals */
  --white: #ffffff;
  --ink-900: #15233a;
  --ink-600: #5a6b82;
  --ink-400: #9aa7b8;
  --line: #e3e8ef;

  --radius-card: 28px;
  --radius-field: 14px;
  --radius-pill: 999px;

  --shadow-card: 0 40px 80px -30px rgba(3, 12, 26, 0.65);
  --shadow-btn: 0 12px 30px -10px rgba(0, 0, 0, 0.45);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --maxw: 1280px;
}

/* ============================================================
   Base
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  /* show the page at the "90%" scale even when the browser is at 100% */
  zoom: 0.9;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* thin gold accent line at the very top of the page */
.top-accent {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-soft) 50%, var(--gold) 70%, transparent);
  position: relative;
  z-index: 30;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 64px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    var(--navy-800)
    url("https://images.unsplash.com/photo-1506953823976-52e1fdc0149a?auto=format&fit=crop&w=2400&q=80")
    center / cover no-repeat;
  filter: saturate(1.05);
}

/* navy gradient overlay — darker at top (navbar) and bottom for readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg,
      rgba(7, 17, 31, 0.92) 0%,
      rgba(9, 22, 40, 0.55) 22%,
      rgba(10, 24, 44, 0.45) 55%,
      rgba(8, 19, 36, 0.85) 100%),
    radial-gradient(120% 80% at 50% 30%, rgba(9, 26, 50, 0.20), rgba(7, 16, 30, 0.75));
  backdrop-filter: saturate(1.1);
}

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: relative;
  z-index: 20;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #34c6d4, #1f93a8);
  box-shadow: 0 8px 20px -6px rgba(43, 182, 196, 0.7);
}

.nav__logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.2px;
  color: #fff;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  margin-right: auto;
}

.nav__menu a {
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(233, 239, 248, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}

.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.28s var(--ease);
}

.nav__menu a:hover { color: #fff; }
.nav__menu a:hover::after { width: 100%; }

/* active page link */
.nav__menu a[aria-current="page"] { color: #fff; }
.nav__menu a[aria-current="page"]::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__mytrips {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(233, 239, 248, 0.88);
  transition: color 0.25s var(--ease);
}
.nav__mytrips:hover { color: #fff; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-2));
  color: #25303f;
  padding: 12px 26px;
  font-size: 1rem;
  box-shadow: 0 10px 26px -10px rgba(224, 176, 74, 0.8);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -12px rgba(224, 176, 74, 0.95);
  filter: brightness(1.04);
}

/* hamburger (mobile only) */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu drawer */
.mobile-menu {
  display: none;
  position: relative;
  z-index: 19;
  flex-direction: column;
  gap: 4px;
  margin: 0 20px;
  padding: 10px 16px 18px;
  background: rgba(10, 22, 40, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 13px 8px;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(233, 239, 248, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu__cta { margin-top: 12px; }

/* ============================================================
   Hero content
   ============================================================ */
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  color: #f3f6fb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.badge__icon { color: var(--gold); }

/* heading */
.hero__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  margin: 26px 0 0;
  line-height: 0.98;
  letter-spacing: -1px;
}
.hero__title-line1,
.hero__title-line2 {
  display: block;
  font-size: clamp(3.2rem, 9.2vw, 8.2rem);
}
.hero__title-line1 {
  color: #fff;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.45);
}
.hero__title-line2 {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  margin-top: 2px;
}

/* subtitle */
.hero__subtitle {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(214, 224, 237, 0.82);
}

/* ============================================================
   Search card
   ============================================================ */
.search-card {
  width: 100%;
  max-width: 1120px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 30px 26px;
  text-align: left;
}

.search-card__grid {
  display: grid;
  grid-template-columns: 1.7fr 1.25fr 0.85fr auto;
  gap: 20px;
  align-items: end;
}

.field { min-width: 0; }

.field__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: var(--ink-600);
  margin-bottom: 11px;
}
.field__label svg { color: var(--ink-400); }

/* custom dropdown */
.dropdown { position: relative; }

.dropdown__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-field);
  font-size: 1.05rem;
  color: var(--ink-900);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.dropdown__btn:hover { border-color: #cdd6e2; }
.dropdown.is-open .dropdown__btn,
.dropdown__btn:focus-visible {
  outline: none;
  border-color: var(--teal-cta-strong);
  box-shadow: 0 0 0 4px rgba(79, 157, 181, 0.14);
}

.dropdown__value { font-weight: 500; }
.dropdown__value.is-placeholder { color: #9aa7b8; font-weight: 400; }

.dropdown__chev {
  color: #9aa7b8;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.dropdown.is-open .dropdown__chev { transform: rotate(180deg); }

.dropdown__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 50px -18px rgba(15, 32, 60, 0.35);
  padding: 7px;
  max-height: 270px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
.dropdown.is-open .dropdown__list {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.dropdown__list li {
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 1rem;
  color: var(--ink-900);
  cursor: pointer;
  transition: background 0.15s var(--ease);
}
.dropdown__list li:hover { background: #f1f5fa; }
.dropdown__list li[aria-selected="true"] {
  background: rgba(79, 157, 181, 0.12);
  color: var(--teal-cta-strong);
  font-weight: 600;
}

/* CTA inside card */
.btn--teal {
  background: linear-gradient(135deg, #7cc0d2, var(--teal-cta) 60%, var(--teal-cta-strong));
  color: #fff;
  padding: 17px 30px;
  font-size: 1.05rem;
  white-space: nowrap;
  box-shadow: 0 14px 30px -12px rgba(79, 157, 181, 0.7);
}
.btn--teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(79, 157, 181, 0.85);
  filter: brightness(1.04);
}
.search-card__cta { height: 56px; }

/* category pills */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.pill {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line);
  background: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-600);
  transition: all 0.2s var(--ease);
}
.pill:hover {
  border-color: var(--teal-cta-strong);
  color: var(--teal-cta-strong);
  background: rgba(79, 157, 181, 0.06);
  transform: translateY(-1px);
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
  margin-top: 42px;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(196, 207, 222, 0.72);
}
.trust-bar svg { color: rgba(196, 207, 222, 0.6); }

/* ============================================================
   Toast
   ============================================================ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 140%);
  background: rgba(13, 29, 51, 0.96);
  color: #fff;
  border: 1px solid rgba(224, 176, 74, 0.5);
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 0.98rem;
  box-shadow: 0 20px 50px -16px rgba(0, 0, 0, 0.6);
  z-index: 100;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
  max-width: 90vw;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav__menu { gap: 26px; }
  .search-card__grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-card__cta { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .nav { padding: 18px 22px; }
  .nav__menu { display: none; }
  .nav__mytrips { display: none; }
  .nav .btn--gold { display: none; }
  .nav__toggle { display: flex; }

  .hero__content { padding-top: 38px; }
  .trust-bar { gap: 26px 36px; }
}

@media (max-width: 620px) {
  .nav__logo-text { font-size: 1.4rem; }
  .hero__content { padding-left: 18px; padding-right: 18px; }
  .badge { font-size: 0.9rem; padding: 9px 18px; }
  .hero__title { margin-top: 22px; }
  .hero__subtitle { font-size: 1.02rem; margin-top: 22px; }

  .search-card {
    padding: 22px 18px 20px;
    border-radius: 22px;
    margin-top: 36px;
  }
  .search-card__grid { grid-template-columns: 1fr; gap: 16px; }
  .search-card__cta { grid-column: auto; }

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
  }
}

/* ============================================================
   Compact page hero (interior pages e.g. Gallery)
   ============================================================ */
.hero--page {
  min-height: auto;
  padding-bottom: 80px;
}
.hero--page .hero__content {
  padding-top: 42px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: rgba(214, 224, 237, 0.65);
}
.breadcrumb a {
  color: rgba(214, 224, 237, 0.85);
  transition: color 0.2s var(--ease);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__current { color: #fff; font-weight: 500; }

/* ============================================================
   Shared section scaffolding
   ============================================================ */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  color: var(--navy-800);
  margin: 0;
  letter-spacing: -0.5px;
}
.section-head__subtitle {
  margin: 18px auto 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: #6b7a8d;
}

/* ============================================================
   Featured Destinations
   ============================================================ */
.section--featured { background: #f1f4f6; }

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

.dest-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -28px rgba(15, 32, 60, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 60px -28px rgba(15, 32, 60, 0.5);
}

.dest-card__media {
  position: relative;
  height: 290px;
  background-color: var(--navy-700);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.dest-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 33, 0) 35%, rgba(8, 18, 33, 0.78) 100%);
}

.dest-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  color: #2b2410;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 18px -8px rgba(224, 176, 74, 0.9);
}

.dest-card__caption {
  position: relative;
  z-index: 2;
  padding: 22px 22px 20px;
  color: #fff;
}
.dest-card__caption h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.7rem;
  margin: 0 0 5px;
}
.dest-card__caption p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(232, 238, 246, 0.86);
}

.dest-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 24px;
}
.dest-card__nights {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.96rem;
  color: #66758a;
}
.dest-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.dest-card__price small { font-size: 0.78rem; color: #93a0b2; }
.dest-card__price strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-800);
}

/* "View Full Gallery" CTA below the featured grid */
.section-cta {
  text-align: center;
  margin-top: 52px;
}
.btn--outline {
  background: transparent;
  color: var(--navy-800);
  border: 1.6px solid #c3ccd8;
  padding: 14px 30px;
  font-size: 1rem;
}
.btn--outline:hover {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -16px rgba(13, 29, 51, 0.6);
}
.btn--outline svg { transition: transform 0.3s var(--ease); }
.btn--outline:hover svg { transform: translateX(4px); }

/* ============================================================
   Why TripCraft
   ============================================================ */
.section--why { background: #e9eef2; }

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

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 22px 45px -30px rgba(15, 32, 60, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 55px -30px rgba(15, 32, 60, 0.5);
}

.why-card__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: linear-gradient(145deg, #e3f3f6, #d3eaef);
}
.why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 12px;
}
.why-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #6b7a8d;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: rgba(214, 224, 237, 0.7);
  padding-top: 72px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 2.4fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__brand .nav__logo { margin-bottom: 20px; }
.footer__desc {
  max-width: 360px;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 22px;
}
.footer__social { display: flex; align-items: center; gap: 12px; }

/* Instagram QR tile (sits to the right of the social icons) */
.footer__qr {
  display: inline-flex;
  padding: 5px;
  margin-left: 4px;
  background: #fff;
  border-radius: 12px;
  line-height: 0;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.footer__qr:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 30px -12px rgba(224, 176, 74, 0.6);
}
.footer__qr img {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  display: block;
}

/* "RK Enterprises" credit in the footer bottom bar */
.footer__rk {
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: rgba(214, 224, 237, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s var(--ease);
}
.footer__social a:hover {
  color: #fff;
  background: rgba(224, 176, 74, 0.18);
  border-color: rgba(224, 176, 74, 0.5);
  transform: translateY(-2px);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col { display: flex; flex-direction: column; }
.footer__col h4 {
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
}
.footer__col a {
  font-size: 0.98rem;
  color: rgba(214, 224, 237, 0.68);
  padding: 7px 0;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.footer__col a:hover { color: var(--gold); padding-left: 4px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
  color: rgba(214, 224, 237, 0.55);
}

/* ---- responsive for new sections ---- */
@media (max-width: 1080px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .section { padding: 72px 0; }
  .container { padding: 0 22px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 620px) {
  .dest-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   Destinations Gallery (bento + filters)
   ============================================================ */
.section--gallery { background: #ffffff; }

/* filter tabs */
.dest-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: -18px 0 48px;
}
.dest-filter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  color: #56657a;
  background: #eef2f6;
  border: 1.5px solid transparent;
  transition: all 0.25s var(--ease);
}
.dest-filter svg { opacity: 0.85; }
.dest-filter:hover {
  color: var(--navy-800);
  background: #e2e8f0;
  transform: translateY(-2px);
}
.dest-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, #4f9db5, var(--teal));
  box-shadow: 0 12px 26px -12px rgba(43, 182, 196, 0.8);
}

/* bento grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 262px;
  grid-auto-flow: row dense;
  gap: 24px;
}
.gallery.is-bento .gallery-card--lg {
  grid-column: span 2;
  grid-row: span 2;
}

/* card */
.gallery-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 44px -28px rgba(15, 32, 60, 0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  animation: galleryIn 0.5s var(--ease) both;
}
.gallery-card.is-hidden { display: none; }

.gallery-card__img {
  position: absolute;
  inset: 0;
  background-color: var(--navy-700);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 33, 0) 28%, rgba(7, 16, 30, 0.55) 65%, rgba(6, 14, 27, 0.92) 100%);
  transition: background 0.4s var(--ease);
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 70px -30px rgba(15, 32, 60, 0.7);
}
.gallery-card:hover .gallery-card__img { transform: scale(1.09); }
.gallery-card:hover::after {
  background: linear-gradient(180deg, rgba(8, 18, 33, 0.1) 18%, rgba(7, 16, 30, 0.55) 55%, rgba(6, 14, 27, 0.95) 100%);
}

/* category tag */
.gallery-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.gallery-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 26px;
  color: #fff;
}
.gallery-card__content h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.85rem;
  margin: 0 0 6px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.gallery-card--lg .gallery-card__content { padding: 34px; }
.gallery-card--lg .gallery-card__content h3 { font-size: 2.9rem; }

.gallery-card__region {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 0.96rem;
  color: rgba(232, 238, 246, 0.85);
}
.gallery-card__region svg { color: var(--gold); }

.gallery-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--gold-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-card:hover .gallery-card__cta {
  opacity: 1;
  transform: translateY(0);
}
.gallery-card__cta svg { transition: transform 0.3s var(--ease); }
.gallery-card:hover .gallery-card__cta svg { transform: translateX(5px); }

@keyframes galleryIn {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* gallery responsive */
@media (max-width: 1080px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery.is-bento .gallery-card--lg { grid-column: span 1; grid-row: span 2; }
  .gallery-card--lg .gallery-card__content h3 { font-size: 2.1rem; }
  .dest-filter { padding: 10px 18px; font-size: 0.92rem; }
}

/* ============================================================
   Cruises page — page header bits
   ============================================================ */
.page-hero__content--left {
  align-items: flex-start;
  text-align: left;
  max-width: var(--maxw);
  padding-left: 40px;
  padding-right: 40px;
}
.page-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  color: #fff;
  margin: 0;
  letter-spacing: -0.5px;
}
.page-subtitle {
  margin: 8px 0 0;
  font-size: 1.1rem;
  color: rgba(214, 224, 237, 0.7);
}
.search-card--wide {
  max-width: 100%;
  margin: 26px 0 0;
}

/* ============================================================
   Cruises results
   ============================================================ */
.section--cruises { background: #eef2f5; }

/* toolbar */
.cruise-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.cruise-count {
  margin: 0;
  font-size: 1.02rem;
  color: #5a6b82;
}
.cruise-count strong { color: var(--navy-800); }

.cruise-controls { display: flex; flex-wrap: wrap; gap: 14px; }
.control { display: flex; align-items: center; gap: 9px; }
.control__icon { color: #8392a6; flex-shrink: 0; }

/* compact dropdown variant */
.dropdown--sm { min-width: 178px; }
.dropdown--sm .dropdown__btn {
  padding: 11px 15px;
  font-size: 0.96rem;
  border-radius: 11px;
  background: #fff;
}
.dropdown--sm .dropdown__value { font-weight: 500; }

/* list */
.cruise-list { display: flex; flex-direction: column; gap: 22px; }

.cruise-card {
  display: grid;
  grid-template-columns: 220px 1fr 210px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 44px -30px rgba(15, 32, 60, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.cruise-card.is-hidden { display: none; }
.cruise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 60px -32px rgba(15, 32, 60, 0.6);
}

/* media */
.cruise-card__media {
  position: relative;
  background-color: var(--navy-700);
  background-size: cover;
  background-position: center;
  min-height: 220px;
}
.cruise-card__ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.5);
}
.ribbon--value  { background: linear-gradient(135deg, #4f9db5, #2bb6c4); }
.ribbon--popular{ background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #2b2410; }
.ribbon--top    { background: linear-gradient(135deg, #5b8def, #3b5fd0); }
.ribbon--low    { background: linear-gradient(135deg, #2faf6a, #1f8f56); }

/* body */
.cruise-card__body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cruise-card__brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cruise-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--teal-cta-strong);
}
.cruise-card__ship {
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a6b82;
  padding: 4px 12px;
  border: 1.4px solid var(--line);
  border-radius: var(--radius-pill);
}
.cruise-card__dest {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--navy-800);
  margin: 12px 0 0;
}
.cruise-card__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 9px;
  font-size: 0.96rem;
  color: #5a6b82;
}
.cruise-card__nights { display: inline-flex; align-items: center; gap: 7px; }
.cruise-card__rating { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--navy-800); }
.cruise-card__rating svg { color: var(--gold); }
.cruise-card__rating em { font-style: normal; font-weight: 400; color: #8392a6; }

.cruise-card__route {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eef1f5;
  font-size: 0.92rem;
  color: #6b7a8d;
}
.cruise-card__route svg { color: #b3bdca; }

.cruise-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-cta-strong);
  align-self: flex-start;
}
.cruise-card__toggle-chev { transition: transform 0.3s var(--ease); }
.cruise-card.is-expanded .cruise-card__toggle-chev { transform: rotate(180deg); }

.cruise-card__included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin-top 0.3s var(--ease);
}
.cruise-card.is-expanded .cruise-card__included {
  max-height: 200px;
  opacity: 1;
  margin-top: 14px;
}
.cruise-card__included li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: #5a6b82;
}
.cruise-card__included li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(47, 175, 106, 0.15)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%232faf6a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 10px no-repeat;
}

/* aside / price */
.cruise-card__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding: 24px 26px;
  border-left: 1px solid #eef1f5;
  background: #fbfcfd;
}
.cruise-card__travelers { font-size: 0.86rem; color: #8392a6; }
.cruise-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-800);
  line-height: 1.1;
  margin-top: 2px;
}
.cruise-card__per { font-size: 0.86rem; color: #8392a6; margin-bottom: 16px; }
.cruise-card__select { padding: 12px 24px; font-size: 0.98rem; }

.cruise-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.1rem;
  color: #6b7a8d;
}

/* cruises responsive */
@media (max-width: 900px) {
  .cruise-card { grid-template-columns: 180px 1fr; }
  .cruise-card__aside {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-left: none;
    border-top: 1px solid #eef1f5;
    padding: 18px 26px;
  }
  .cruise-card__per { margin-bottom: 0; }
}
@media (max-width: 620px) {
  .page-hero__content--left { padding-left: 18px; padding-right: 18px; }
  .cruise-card { grid-template-columns: 1fr; }
  .cruise-card__media { min-height: 170px; }
  .cruise-card__included { grid-template-columns: 1fr; }
  .cruise-card__aside { flex-wrap: wrap; gap: 12px; }
  .cruise-controls { width: 100%; }
  .dropdown--sm { flex: 1; min-width: 0; }
}

/* ============================================================
   My Trips page
   ============================================================ */
.section--trips { background: #eef2f5; }

/* stats summary */
.trip-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 18px 38px -30px rgba(15, 32, 60, 0.45);
}
.stat-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--teal-cta-strong);
  background: rgba(79, 157, 181, 0.12);
}
.stat-card__icon--green { color: #2faf6a; background: rgba(47, 175, 106, 0.12); }
.stat-card__icon--blue  { color: #3b5fd0; background: rgba(59, 95, 208, 0.12); }
.stat-card__icon--gold  { color: var(--gold-2); background: rgba(224, 176, 74, 0.16); }
.stat-card__text { display: flex; flex-direction: column; line-height: 1.2; }
.stat-card__num { font-size: 1.7rem; font-weight: 800; color: var(--navy-800); }
.stat-card__label { font-size: 0.9rem; color: #7c8aa0; margin-top: 2px; }

/* filter tabs */
.trip-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.trip-filter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 600;
  color: #56657a;
  background: #fff;
  border: 1.5px solid transparent;
  transition: all 0.25s var(--ease);
}
.trip-filter:hover { color: var(--navy-800); transform: translateY(-2px); }
.trip-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, #4f9db5, var(--teal));
  box-shadow: 0 12px 26px -14px rgba(43, 182, 196, 0.8);
}
.trip-filter__count {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
}
.trip-filter.is-active .trip-filter__count { background: rgba(255, 255, 255, 0.25); }

/* bookings list */
.trip-list { display: flex; flex-direction: column; gap: 18px; }

.trip-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 28px 22px 30px;
  overflow: hidden;
  box-shadow: 0 18px 40px -30px rgba(15, 32, 60, 0.42);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trip-card.is-hidden { display: none; }
.trip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 55px -32px rgba(15, 32, 60, 0.55);
}

.trip-card__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #2faf6a;
}
.trip-card[data-status="completed"] .trip-card__accent { background: #8392a6; }
.trip-card[data-status="cancelled"] .trip-card__accent { background: #e0564a; }

.trip-card__thumb {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  background-color: var(--navy-700);
  background-size: cover;
  background-position: center;
}

.trip-card__main { min-width: 0; }
.trip-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trip-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #5a6b82;
}
.trip-card__brand svg { color: #93a0b2; flex-shrink: 0; }
.trip-card__nights { color: #93a0b2; font-weight: 500; }

.trip-card__dest {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-800);
  margin: 9px 0 0;
}
.trip-card__meta {
  margin: 6px 0 0;
  font-size: 0.96rem;
  color: #7c8aa0;
}
.trip-card__dot { margin: 0 8px; color: #c3ccd8; }

.trip-card__actions { display: flex; gap: 18px; margin-top: 14px; }
.btn-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-cta-strong);
  position: relative;
  padding: 2px 0;
  transition: color 0.2s var(--ease);
}
.btn-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal-cta-strong);
  transition: width 0.25s var(--ease);
}
.btn-link:hover { color: var(--teal); }
.btn-link:hover::after { width: 100%; }

.trip-card__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  white-space: nowrap;
}
.trip-card__ref { font-size: 0.84rem; color: #93a0b2; letter-spacing: 0.3px; }
.trip-card__price {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-800);
  margin-top: 8px;
}
.trip-card__price--struck { color: #aab4c1; text-decoration: line-through; }

/* status badges */
.status {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: capitalize;
}
.status--confirmed { color: #1f8f56; background: rgba(47, 175, 106, 0.15); }
.status--completed { color: #5a6b82; background: rgba(131, 146, 166, 0.18); }
.status--cancelled { color: #c33f33; background: rgba(224, 86, 74, 0.15); }

.trip-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.1rem;
  color: #6b7a8d;
}

/* my-trips responsive */
@media (max-width: 980px) {
  .trip-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .trip-card {
    grid-template-columns: 60px 1fr;
    gap: 16px;
    padding: 20px 22px 20px 24px;
  }
  .trip-card__thumb { width: 60px; height: 60px; }
  .trip-card__aside {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eef1f5;
    padding-top: 14px;
    margin-top: 4px;
  }
  .trip-card__price { margin-top: 0; }
}
@media (max-width: 460px) {
  .trip-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   Consultation page
   ============================================================ */
.section--consult { background: #eef2f5; }

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}

.consult-main { display: flex; flex-direction: column; gap: 26px; }

/* form cards */
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 34px;
  box-shadow: 0 22px 46px -32px rgba(15, 32, 60, 0.45);
}
.form-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.form-grid--mt { margin-top: 18px; }

.field-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.field-group:last-child { margin-bottom: 0; }
.form-grid .field-group { margin-bottom: 0; }

.flabel {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 9px;
}
.req { color: #e0564a; }

/* inputs */
.input {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink-900);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.input::placeholder { color: #9aa7b8; }
.input:hover { border-color: #cdd6e2; }
.input:focus {
  outline: none;
  border-color: var(--teal-cta-strong);
  box-shadow: 0 0 0 4px rgba(79, 157, 181, 0.14);
}
textarea.input { resize: vertical; min-height: 118px; line-height: 1.5; }

/* form dropdown sizing to match inputs */
.dropdown--form .dropdown__btn {
  padding: 13px 16px;
  font-size: 1rem;
  border-radius: 12px;
}

/* custom checkbox */
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  cursor: pointer;
  font-size: 0.98rem;
  color: #5a6b82;
  user-select: none;
}
.checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox__box {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.7px solid #c3ccd8;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.checkbox__box svg { opacity: 0; transform: scale(0.5); transition: all 0.2s var(--ease); }
.checkbox input:checked + .checkbox__box {
  background: var(--navy-800);
  border-color: var(--navy-800);
}
.checkbox input:checked + .checkbox__box svg { opacity: 1; transform: scale(1); }
.checkbox input:focus-visible + .checkbox__box {
  box-shadow: 0 0 0 4px rgba(79, 157, 181, 0.18);
}

/* submit */
.btn--submit {
  width: 100%;
  gap: 11px;
  padding: 18px;
  font-size: 1.08rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #7cc0d2, var(--teal-cta) 60%, var(--teal-cta-strong));
  box-shadow: 0 16px 34px -16px rgba(79, 157, 181, 0.7);
}
.btn--submit:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -18px rgba(79, 157, 181, 0.85);
  filter: brightness(1.04);
}
.btn--submit:disabled {
  background: #a9cdd8;
  box-shadow: none;
  cursor: not-allowed;
}

/* sidebar */
.consult-aside { display: flex; flex-direction: column; gap: 22px; }
.aside-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 22px 46px -34px rgba(15, 32, 60, 0.4);
}
.aside-card__title {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 18px;
}
.why-list { display: flex; flex-direction: column; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #5a6b82;
}
.why-list svg { color: #2faf6a; flex-shrink: 0; margin-top: 1px; }

.call-card { background: #e6eef3; box-shadow: none; }
.call-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--teal-cta-strong);
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.call-card a:hover { color: var(--teal); gap: 15px; }
.call-card svg { color: var(--teal-cta-strong); flex-shrink: 0; }

/* consultation responsive */
@media (max-width: 900px) {
  .consult-grid { grid-template-columns: 1fr; max-width: 680px; }
  .consult-aside { flex-direction: row; flex-wrap: wrap; }
  .consult-aside .aside-card { flex: 1; min-width: 260px; }
}
@media (max-width: 560px) {
  .form-card { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .consult-aside { flex-direction: column; }
}

/* ============================================================
   About page
   ============================================================ */
.kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 16px;
}

/* intro */
.section--intro { background: #ffffff; }
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  color: var(--navy-800);
  margin: 0 0 22px;
}
.about-intro__text p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: #5a6b82;
  margin: 0 0 16px;
}
.about-intro__media {
  height: 100%;
  min-height: 440px;
  border-radius: 24px;
  background-color: var(--navy-700);
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 80px -40px rgba(15, 32, 60, 0.6);
}

/* stat band */
.stat-band { background: var(--navy-900); }
.stat-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-band__item { display: flex; flex-direction: column; gap: 8px; }
.stat-band__num {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 60%, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.stat-band__label { font-size: 1rem; color: rgba(214, 224, 237, 0.7); }

/* team */
.section--team { background: #ffffff; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 26px;
  text-align: center;
  box-shadow: 0 24px 50px -32px rgba(15, 32, 60, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 64px -34px rgba(15, 32, 60, 0.55);
}
.team-card__photo {
  width: 100%;
  height: 300px;
  background-color: var(--navy-700);
  background-size: cover;
  background-position: center top;
}
.team-card__name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy-800);
  margin: 20px 0 0;
}
.team-card__role {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-cta-strong);
  margin-top: 5px;
}
.team-card__bio {
  margin: 12px 0 0;
  padding: 0 24px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: #6b7a8d;
}

/* accreditations */
.section--creds { background: #eef2f5; }
.creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cred {
  background: #fff;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 22px 46px -34px rgba(15, 32, 60, 0.4);
  transition: transform 0.3s var(--ease);
}
.cred:hover { transform: translateY(-4px); }
.cred__badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(145deg, #34c6d4, #1f7f95);
  box-shadow: 0 12px 26px -12px rgba(43, 182, 196, 0.6);
}
.cred h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 10px;
}
.cred p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #6b7a8d;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0;
  text-align: center;
}
.cta-band__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.cta-band__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.1;
}
.cta-band__text {
  font-size: 1.12rem;
  line-height: 1.6;
  color: rgba(220, 229, 240, 0.85);
  margin: 0 auto 32px;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 12px 28px;
  font-size: 1rem;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

/* about responsive */
@media (max-width: 900px) {
  .about-intro__inner { grid-template-columns: 1fr; gap: 36px; }
  .about-intro__media { min-height: 320px; order: -1; }
  .stat-band__inner { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .creds { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .stat-band__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Plan My Trip — wizard
   ============================================================ */
.section--plan { background: #eef2f5; }
.wizard { max-width: 880px; margin: 0 auto; }

/* stepper */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto 38px;
}
.wizard-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  position: relative;
}
.wizard-step::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: #d4dce6;
  z-index: 0;
}
.wizard-step:first-child::before { display: none; }
.wizard-step.is-active::before,
.wizard-step.is-done::before { background: var(--teal); }
.wizard-step__num {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e2e8f0;
  color: #8392a6;
  font-weight: 700;
  font-size: 0.98rem;
  transition: all 0.3s var(--ease);
}
.wizard-step.is-active .wizard-step__num {
  background: linear-gradient(135deg, #4f9db5, var(--teal));
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(43, 182, 196, 0.75);
}
.wizard-step.is-done .wizard-step__num { background: var(--teal); color: #fff; }
.wizard-step__label { font-size: 0.86rem; font-weight: 600; color: #8392a6; text-align: center; }
.wizard-step.is-active .wizard-step__label { color: var(--navy-800); }

/* card */
.wizard-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 64px -36px rgba(15, 32, 60, 0.5);
}

/* progress bar */
.wizard-progress {
  height: 6px;
  border-radius: 999px;
  background: #e6ecf2;
  overflow: hidden;
}
.wizard-progress__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f9db5, var(--teal));
  transition: width 0.4s var(--ease);
}
.wizard-count {
  margin: 12px 0 26px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8392a6;
}

/* panels */
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; animation: galleryIn 0.4s cubic-bezier(0.4,0,0.2,1) both; }
.wizard-panel__title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy-800);
  margin: 0 0 8px;
}
.wizard-panel__sub { margin: 0 0 26px; font-size: 1rem; color: #6b7a8d; line-height: 1.55; }

/* choice grid */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.choice-grid--three { grid-template-columns: repeat(3, 1fr); }

.choice {
  position: relative;
  border: 2px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.choice:hover {
  border-color: #bcc8d6;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px -24px rgba(15, 32, 60, 0.5);
}
.choice.is-selected {
  border-color: var(--teal-cta-strong);
  box-shadow: 0 0 0 4px rgba(79, 157, 181, 0.16);
}
.choice__img {
  display: block;
  height: 108px;
  background-color: var(--navy-700);
  background-size: cover;
  background-position: center;
}
.choice__img--blank {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(135deg, #28456a, #16314f);
}
.choice__label { display: block; padding: 13px 15px; font-weight: 600; color: var(--navy-800); }
.choice__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-cta-strong);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.2s var(--ease);
}
.choice.is-selected .choice__check { opacity: 1; transform: scale(1); }

/* icon + text variants */
.choice--icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  padding: 28px 16px;
  color: var(--teal-cta-strong);
}
.choice--icon .choice__label { padding: 0; }
.choice--text { padding: 24px 16px; text-align: center; }
.choice--text .choice__label { padding: 0; }

/* travelers stepper */
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 9px 16px;
}
.stepper__btn {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #eef2f6;
  color: var(--navy-800);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all 0.2s var(--ease);
}
.stepper__btn:hover { background: var(--teal-cta-strong); color: #fff; }
.stepper__val { font-size: 1.6rem; font-weight: 800; color: var(--navy-800); min-width: 44px; text-align: center; }

.flabel--mt { margin-top: 28px; }

/* summary */
.summary-wrap { margin-top: 28px; }
.summary-title { font-size: 1.05rem; font-weight: 700; color: var(--navy-800); margin: 0 0 12px; }
.summary {
  background: #f4f7fa;
  border-radius: 14px;
  padding: 8px 20px;
}
.summary li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid #e6ecf2;
  font-size: 0.98rem;
}
.summary li:last-child { border-bottom: none; }
.summary li span:first-child { color: #8392a6; }
.summary li span:last-child { color: var(--navy-800); font-weight: 600; text-align: right; }

/* nav */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
}
.wizard-next { min-width: 190px; }
.wizard-next:disabled { background: #a9cdd8; box-shadow: none; cursor: not-allowed; }

/* success */
.wizard-success { text-align: center; padding: 26px 10px 14px; }
.wizard-success__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2faf6a;
  background: rgba(47, 175, 106, 0.14);
}
.wizard-success__title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy-800);
  margin: 0 0 14px;
}
.wizard-success__text {
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #6b7a8d;
}
.wizard-success__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* wizard responsive */
@media (max-width: 720px) {
  .wizard-card { padding: 28px 22px; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-grid--three { grid-template-columns: repeat(2, 1fr); }
  .wizard-step__label { font-size: 0.74rem; }
}
@media (max-width: 460px) {
  .wizard-step__label { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .wizard-next { min-width: 0; flex: 1; }
}

/* ============================================================
   Help Centre page
   ============================================================ */
.section--help { background: #ffffff; }
.section--specialists { background: #eef2f5; }
.section--faq { background: #ffffff; }
.container--narrow { max-width: 820px; }

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.help-card {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 22px 46px -34px rgba(15, 32, 60, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 60px -34px rgba(15, 32, 60, 0.5);
}
.help-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--teal-cta-strong);
  background: rgba(79, 157, 181, 0.12);
}
.help-card__icon--green { color: #2faf6a; background: rgba(47, 175, 106, 0.12); }
.help-card__icon--blue  { color: #3b5fd0; background: rgba(59, 95, 208, 0.12); }
.help-card__icon--gold  { color: var(--gold-2); background: rgba(224, 176, 74, 0.16); }
.help-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0 0 10px;
}
.help-card p {
  margin: 0 0 18px;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #6b7a8d;
}
.help-card__email {
  display: inline-block;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--teal-cta-strong);
  word-break: break-all;
  transition: color 0.2s var(--ease);
}
.help-card__email:hover { color: var(--teal); }

/* specialists */
.specialist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.specialist-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 22px 46px -34px rgba(15, 32, 60, 0.4);
}
.specialist-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(145deg, #34c6d4, #1f7f95);
}
.specialist-card__info { min-width: 0; }
.specialist-card__info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 0;
}
.specialist-card__role {
  display: block;
  font-size: 0.9rem;
  color: #8392a6;
  margin: 2px 0 7px;
}
.help-chat-hint {
  text-align: center;
  margin: 36px auto 0;
  font-size: 0.98rem;
  color: #7c8aa0;
}

/* FAQ (native details) */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: 14px;
  padding: 4px 22px;
  transition: box-shadow 0.2s var(--ease);
}
.faq-item[open] { box-shadow: 0 18px 40px -28px rgba(15, 32, 60, 0.4); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__chev { color: #8392a6; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.faq-item[open] .faq-item__chev { transform: rotate(180deg); }
.faq-item p {
  margin: 0;
  padding: 0 0 20px;
  font-size: 0.99rem;
  line-height: 1.65;
  color: #6b7a8d;
}
.faq-item p a { color: var(--teal-cta-strong); font-weight: 600; }

@media (max-width: 820px) {
  .help-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .specialist-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Floating chat widget (injected on every page)
   ============================================================ */
.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.chat-fab__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #34c6d4, #1f93a8);
  box-shadow: 0 16px 34px -10px rgba(31, 147, 168, 0.7);
  display: grid;
  place-items: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.chat-fab__btn:hover { transform: scale(1.07); }
.chat-fab__btn svg { grid-area: 1 / 1; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.chat-fab__icon-close { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.chat-fab.is-open .chat-fab__icon-open { opacity: 0; transform: rotate(90deg) scale(0.6); }
.chat-fab.is-open .chat-fab__icon-close { opacity: 1; transform: none; }

.chat-fab__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.chat-fab.is-open .chat-fab__menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.chat-option {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 226px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px 12px 12px;
  box-shadow: 0 16px 38px -12px rgba(15, 32, 60, 0.4);
  transition: transform 0.2s var(--ease);
}
.chat-option:hover { transform: translateY(-2px); }
.chat-option__icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.chat-option--whatsapp .chat-option__icon { background: #25d366; }
.chat-option--telegram .chat-option__icon { background: #229ed9; }
.chat-option__text { display: flex; flex-direction: column; line-height: 1.25; }
.chat-option__text strong { font-size: 0.99rem; color: var(--navy-800); }
.chat-option__text span { font-size: 0.83rem; color: #7c8aa0; }

@media (max-width: 560px) {
  .chat-fab { right: 16px; bottom: 16px; }
}

