/* ==========================================================================
   FlightsFare Solutions LLC — Global Stylesheet
   Built on Bootstrap 5.3
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Base & typography
   3.  Buttons & utilities
   4.  Top bar & header
   5.  Hero
   6.  Section headings
   7.  USP strip
   8.  Destinations
   9.  Flight deals
   10. Promo banner
   11. About & stats
   12. Process / How it works
   13. Testimonials
   14. Airlines strip
   15. Newsletter
   16. Inner page banner
   17. FAQ / accordion
   18. Contact
   19. Footer
   20. Back to top & helpers
   21. Reveal animations
   22. Responsive
   ========================================================================== */

/* 1. Design tokens ======================================================== */
:root {
  --ff-ink: #08182b;
  --ff-ink-2: #0f2740;
  --ff-ink-3: #1b3a58;

  --ff-primary: #0b7a75;
  --ff-primary-600: #0a6a66;
  --ff-primary-300: #12a39b;
  --ff-primary-soft: #e6f5f4;

  --ff-accent: #ff7a45;
  --ff-accent-600: #ef6630;
  --ff-accent-soft: #fff0e9;

  --ff-gold: #f6b93b;

  --ff-body: #56708a;
  --ff-muted: #8199ae;
  --ff-line: #e2eaf1;
  --ff-soft: #f4f8fb;
  --ff-white: #ffffff;

  --ff-radius: 16px;
  --ff-radius-lg: 24px;
  --ff-radius-sm: 10px;

  --ff-shadow-sm: 0 4px 16px rgba(8, 24, 43, .06);
  --ff-shadow: 0 14px 40px rgba(8, 24, 43, .10);
  --ff-shadow-lg: 0 28px 70px rgba(8, 24, 43, .16);

  --ff-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --ff-text: "Inter", "Segoe UI", system-ui, sans-serif;

  --ff-header-h: 78px;
}

/* 2. Base & typography ==================================================== */
* { -webkit-tap-highlight-color: transparent; }

/* leaves room for the sticky navigation bar when jumping to an anchor */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--ff-text);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ff-body);
  background: var(--ff-white);
  overflow-x: hidden;
}

/* `clip` stops sideways overflow without turning <body> into a scroll
   container, which is what breaks position:sticky on the header.
   `hidden` above stays as the fallback for older browsers. */
@supports (overflow-x: clip) {
  body { overflow-x: clip; }
}

h1, h2, h3, h4, h5, h6, .display-title {
  font-family: var(--ff-display);
  color: var(--ff-ink);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1.02rem; }

p { margin-bottom: 1rem; }

a { color: var(--ff-primary); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--ff-accent); }

img { max-width: 100%; height: auto; }

::selection { background: var(--ff-primary); color: #fff; }

.section { padding: 90px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background: var(--ff-soft); }
.bg-ink { background: var(--ff-ink); }

.text-primary-ff { color: var(--ff-primary) !important; }
.text-accent { color: var(--ff-accent) !important; }
.text-ink { color: var(--ff-ink) !important; }
.text-body-ff { color: var(--ff-body) !important; }
.fw-800 { font-weight: 800; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ff-soft); }
::-webkit-scrollbar-thumb { background: #c3d3e0; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--ff-primary-300); }

/* 3. Buttons & utilities ================================================== */
.btn {
  font-family: var(--ff-display);
  font-weight: 600;
  border-radius: 12px;
  padding: .78rem 1.6rem;
  letter-spacing: -.01em;
  transition: all .28s cubic-bezier(.2, .7, .3, 1);
  border: 1px solid transparent;
}

.btn-ff-primary {
  background: linear-gradient(135deg, var(--ff-primary-300), var(--ff-primary-600));
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 122, 117, .28);
}
.btn-ff-primary:hover, .btn-ff-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 122, 117, .38);
}

.btn-ff-accent {
  background: linear-gradient(135deg, #ff8f5e, var(--ff-accent-600));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 122, 69, .30);
}
.btn-ff-accent:hover, .btn-ff-accent:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 122, 69, .42);
}

.btn-ff-outline {
  border-color: var(--ff-line);
  color: var(--ff-ink);
  background: #fff;
}
.btn-ff-outline:hover {
  border-color: var(--ff-primary);
  color: var(--ff-primary);
  background: var(--ff-primary-soft);
}

.btn-ff-light {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ff-light:hover { background: #fff; color: var(--ff-ink); }

.btn-lg-ff { padding: 1rem 2.1rem; font-size: 1.02rem; }
.btn-sm-ff { padding: .5rem 1.1rem; font-size: .875rem; border-radius: 10px; }

.link-arrow {
  font-family: var(--ff-display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.link-arrow i { transition: transform .25s ease; }
.link-arrow:hover i { transform: translateX(4px); }

.badge-ff {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .38rem .85rem;
  border-radius: 999px;
  background: var(--ff-primary-soft);
  color: var(--ff-primary);
}
.badge-ff.badge-accent { background: var(--ff-accent-soft); color: var(--ff-accent-600); }
.badge-ff.badge-gold { background: #fff5e0; color: #b5810c; }
.badge-ff.badge-glass { background: rgb(253 138 88); color: #fff; }

/* 4. Top bar & header ===================================================== */
.topbar {
  background: var(--ff-ink);
  color: rgba(255, 255, 255, .78);
  font-size: .84rem;
  padding: .55rem 0;
}
.topbar a { color: rgba(255, 255, 255, .82); }
.topbar a:hover { color: var(--ff-gold); }
.topbar i { color: var(--ff-primary-300); margin-right: .35rem; }
.topbar .sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .18); display: inline-block; margin: 0 .9rem; vertical-align: middle; }
.topbar .social a { margin-left: .75rem; font-size: .95rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #fff;
  transition: box-shadow .3s ease;
}
/* Only a shadow changes on scroll. Nothing here may alter the header's
   height — that would shift the page under the reader and make the sticky
   bar flicker as the scroll threshold is crossed back and forth. */
.site-header.is-stuck { box-shadow: 0 8px 30px rgba(8, 24, 43, .09); }

.main-nav { padding: .85rem 0; }

.navbar-brand.ff-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 0;
}
/* the logo is a wide lockup (1343x349) — height:auto keeps it from being
   stretched by the width/height attributes on the <img> tag */
.ff-brand img { width: 225px; height: auto; max-width: 100%; }
.ff-brand .brand-name {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.28rem;
  line-height: 1.05;
  color: var(--ff-ink);
  letter-spacing: -.03em;
}
.ff-brand .brand-name span { color: var(--ff-primary); }
.ff-brand .brand-tag {
  display: block;
  font-family: var(--ff-text);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ff-muted);
}

.ff-menu { gap: .1rem; }
.ff-menu .nav-link {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ff-ink-2);
  padding: .55rem .85rem !important;
  border-radius: 10px;
  position: relative;
  transition: color .25s ease, background .25s ease;
}
.ff-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .28rem;
  width: 0;
  height: 2px;
  background: var(--ff-accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .28s ease;
}
.ff-menu .nav-link:hover,
.ff-menu .nav-link.active { color: var(--ff-primary); }
.ff-menu .nav-link:hover::after,
.ff-menu .nav-link.active::after { width: 20px; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-display);
}
.nav-phone .icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: #ffe3d6;
  color: #fd7443;
  font-size: 1.05rem;
}
.nav-phone .label { font-size: .7rem; color: var(--ff-muted); text-transform: uppercase; letter-spacing: .1em; line-height: 1; }
.nav-phone .number { font-weight: 800; color: var(--ff-ink); font-size: 1rem; line-height: 1.3; }

.navbar-toggler {
  border: 1px solid var(--ff-line);
  border-radius: 10px;
  padding: .45rem .6rem;
  color: var(--ff-ink);
}
.navbar-toggler:focus { box-shadow: none; }

.offcanvas.ff-offcanvas { width: 320px; }
.ff-offcanvas .ff-brand img { width: 170px; }
.ff-offcanvas .offcanvas-header { border-bottom: 1px solid var(--ff-line); }
.ff-offcanvas .nav-link { padding: .8rem .25rem !important; border-bottom: 1px dashed var(--ff-line); }
.ff-offcanvas .nav-link::after { display: none; }

/* 5. Hero ================================================================= */
/* Light banner: a bright sky photo-style background behind dark type, with
   the search card sitting inside it. No overflow:hidden — the passenger
   panel opens past the bottom edge of the card. */
.hero {
  position: relative;
  background: #e8f3fc url("../images/bg-content-1.png") center bottom / cover no-repeat;
  padding: 72px 0 56px;
  text-align: center;
}
.hero > .container { position: relative; z-index: 2; }
.lead {
    font-size: 18px;
    font-weight: 300;
    padding: 0px 135px;
}
.hero-head { max-width: 800px; margin: 0 auto 1.9rem; }
.hero h1 {
  color: var(--ff-ink);
  margin-bottom: .7rem;
  font-size: clamp(2.1rem, 4.6vw, 2.5rem);
}
.hero h1 em { font-style: normal; color: var(--ff-primary); }
.hero-sub {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--ff-ink-3);
  margin-bottom: .55rem;
}
.hero-note {
  color: var(--ff-body);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* single product tab — the site sells flights only */
.hero-tabs {
  display: inline-flex;
  gap: .25rem;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(226, 234, 241, .9);
  border-radius: 999px;
  padding: .32rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 20px rgba(8, 24, 43, .07);
  backdrop-filter: blur(6px);
}
.hero-tab {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: .58rem 1.6rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ff-body);
}
.hero-tab.active {
  background: var(--ff-primary-soft);
  color: var(--ff-primary);
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 2rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ff-ink-2);
}
.hero-trust i { color: var(--ff-primary); }

/* 6. Section headings ===================================================== */
.section-head { margin-bottom: 3rem; }
.section-head .eyebrow {
  font-family: var(--ff-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ff-primary);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .7rem;
}
.section-head .eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--ff-accent); border-radius: 2px;
}
.section-head.text-center .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: .7rem; }
.section-head p { color: var(--ff-body); max-width: 620px; margin: 0; }
.section-head.text-center p { margin-inline: auto; }

/* 7. USP strip ============================================================ */
.usp-section { padding-top: 72px; }

.usp-card {
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  padding: 2rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.usp-card::after {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--ff-primary-soft);
  opacity: 0;
  transition: opacity .35s ease;
}
.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ff-shadow);
  border-color: transparent;
}
.usp-card:hover::after { opacity: 1; }
.usp-card > * { position: relative; z-index: 1; }
.usp-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.15rem;
  background: linear-gradient(135deg, var(--ff-primary-300), var(--ff-primary-600));
  color: #fff;
  box-shadow: 0 10px 22px rgba(11, 122, 117, .25);
}
.usp-card:nth-child(2n) .usp-icon { background: linear-gradient(135deg, #ff9d6f, var(--ff-accent-600)); box-shadow: 0 10px 22px rgba(255, 122, 69, .25); }
.usp-card:nth-child(3n) .usp-icon { background: linear-gradient(135deg, #ffd06b, #e39a09); box-shadow: 0 10px 22px rgba(246, 185, 59, .28); }
.usp-card h3 { font-size: 1.16rem; margin-bottom: .5rem; }
.usp-card p { font-size: .93rem; margin: 0; }

/* 8. Destinations ========================================================= */
.dest-card {
  position: relative;
  display: block;
  border-radius: var(--ff-radius);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--ff-shadow-sm);
  isolation: isolate;
}
.dest-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.dest-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4, 16, 31, .92) 8%, rgba(4, 16, 31, .45) 46%, rgba(4, 16, 31, .05) 100%);
  transition: opacity .4s ease;
}
.dest-card:hover img { transform: scale(1.09); }

.dest-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.4rem 1.35rem;
  color: #fff;
}
.dest-code {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  z-index: 2;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: .35rem .7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  backdrop-filter: blur(6px);
}
.dest-body h3 { color: #fff; font-size: 1.35rem; margin-bottom: .2rem; }
.dest-body .country { font-size: .82rem; color: rgba(255, 255, 255, .7); display: block; margin-bottom: .55rem; }
.dest-body p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .78);
  margin: 0 0 .9rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease, margin .45s ease;
}
.dest-card:hover .dest-body p { max-height: 90px; opacity: 1; }
.dest-body .explore {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--ff-display); font-weight: 700; font-size: .88rem;
  color: var(--ff-gold);
}
.dest-body .explore i { transition: transform .25s ease; }
.dest-card:hover .explore i { transform: translateX(5px); }
.dest-body .from-price {
  font-family: var(--ff-display); font-size: .8rem; color: rgba(255, 255, 255, .75);
  display: block; margin-bottom: .5rem;
}
.dest-body .from-price b { color: #fff; font-size: 1.05rem; }

.dest-card.tall { height: 420px; }

/* 9. Flight deals ========================================================= */
.deal-card {
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.deal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ff-shadow);
  border-color: transparent;
}

.deal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px dashed var(--ff-line);
  background: linear-gradient(180deg, #fbfdff, #fff);
}
.airline {
  display: flex; align-items: center; gap: .6rem;
  min-width: 0;
}
.airline-logo {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .02em;
  color: #fff;
  flex-shrink: 0;
}
.airline .name {
  font-family: var(--ff-display); font-weight: 700; font-size: .9rem; color: var(--ff-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.airline .sub { font-size: .74rem; color: var(--ff-muted); }

.deal-route {
  padding: 1.35rem 1.25rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.deal-route .pt { flex: 1; min-width: 0; }
.deal-route .pt .code { font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem; color: var(--ff-ink); line-height: 1; }
.deal-route .pt .city { font-size: .84rem; color: var(--ff-body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.deal-route .pt.end { text-align: right; }
.deal-path {
  flex: 0 0 84px;
  position: relative;
  height: 26px;
  display: grid;
  place-items: center;
}
.deal-path::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 50%;
  border-top: 2px dashed #cfdce7;
}
.deal-path i {
  position: relative;
  background: #fff;
  color: var(--ff-primary);
  padding: 0 .3rem;
  font-size: 1.05rem;
}

.deal-meta {
  padding: 0 1.25rem .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.deal-chip {
  font-size: .76rem;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ff-ink-2);
  background: var(--ff-soft);
  border: 1px solid var(--ff-line);
  padding: .28rem .6rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.deal-chip i { color: var(--ff-primary); font-size: .85rem; }

.deal-foot {
  margin-top: auto;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--ff-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.deal-price .label { font-size: .72rem; color: var(--ff-muted); text-transform: uppercase; letter-spacing: .1em; display: block; line-height: 1.4; }
.deal-price .amt { font-family: var(--ff-display); font-weight: 800; font-size: 1.7rem; color: var(--ff-primary); line-height: 1; }
.deal-price .amt small { font-size: .95rem; font-weight: 700; }
.deal-price .strike { font-size: .8rem; color: var(--ff-muted); text-decoration: line-through; margin-left: .3rem; }

.deal-ribbon {
  position: absolute; top: 0; left: 0;
  z-index: 2;
  font-family: var(--ff-display); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--ff-accent); color: #fff;
  padding: .25rem .7rem;
  border-radius: 0 0 10px 0;
}
.deal-card { position: relative; }
/* make room so the ribbon never sits on top of the airline row */
.deal-card.has-ribbon .deal-top { padding-top: 2.05rem; }

/* 10. Promo banner ======================================================== */
.promo {
  position: relative;
  background: var(--ff-ink) url("../images/cta-bg.svg") center/cover no-repeat;
  color: #fff;
  padding: 96px 0;
  overflow: hidden;
}
.promo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 18, 31, .92), rgba(4, 18, 31, .55));
}
.promo > .container { position: relative; z-index: 2; }
.promo h2 { color: #fff; margin-bottom: .9rem; }
.promo p { color: rgba(255, 255, 255, .82); font-size: 1.08rem; margin-bottom: 0; }
.promo .promo-call {
  display: inline-flex; align-items: center; gap: .8rem;
  color: #fff;
}
.promo .promo-call .ring {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 1.3rem;
  color: var(--ff-gold);
}
.promo .promo-call .num { font-family: var(--ff-display); font-weight: 800; font-size: 1.35rem; line-height: 1.2; }
.promo .promo-call .lbl { font-size: .8rem; color: rgba(255, 255, 255, .7); }

/* 11. About & stats ======================================================= */
.about-media { position: relative; padding-bottom: 60px; padding-right: 40px; }
.about-media .main-img {
  border-radius: var(--ff-radius-lg);
  overflow: hidden;
  box-shadow: var(--ff-shadow);
}
.about-media .sub-img {
  position: absolute;
  right: 0; bottom: 0;
  width: 56%;
  border-radius: var(--ff-radius);
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: var(--ff-shadow);
}
.about-badge {
  position: absolute;
  left: -18px; top: 40px;
  background: #fff;
  border-radius: var(--ff-radius);
  box-shadow: var(--ff-shadow);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.about-badge .ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--ff-accent-soft); color: var(--ff-accent-600); font-size: 1.3rem;
}
.about-badge .n { font-family: var(--ff-display); font-weight: 800; font-size: 1.25rem; color: var(--ff-ink); line-height: 1; }
.about-badge .t { font-size: .78rem; color: var(--ff-muted); }

.about-list { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .5rem 0;
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ff-ink-2);
  font-size: .97rem;
}
.about-list li i {
  color: var(--ff-primary);
  background: var(--ff-primary-soft);
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: .18rem;
}

.stat-row { border-top: 1px solid var(--ff-line); padding-top: 1.6rem; margin-top: 1.6rem; }
.stat-item .num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ff-primary);
  line-height: 1;
}
.stat-item .lbl { font-size: .85rem; color: var(--ff-body); margin-top: .3rem; }

.stats-band { background: var(--ff-ink); color: #fff; padding: 56px 0; }
.stats-band .stat-item .num { color: #fff; }
.stats-band .stat-item .lbl { color: rgba(255, 255, 255, .68); }

/* 12. Process / How it works ============================================== */
.step-card {
  text-align: center;
  padding: 2rem 1.4rem;
  border-radius: var(--ff-radius);
  background: #fff;
  border: 1px solid var(--ff-line);
  height: 100%;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--ff-shadow); }
.step-num {
  position: absolute; top: 1rem; right: 1.2rem;
  font-family: var(--ff-display); font-weight: 800; font-size: 2.6rem;
  color: var(--ff-soft); line-height: 1;
}
.step-icon {
  width: 70px; height: 70px; margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.7rem;
  background: var(--ff-primary-soft);
  color: var(--ff-primary);
  position: relative; z-index: 1;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.step-card p { font-size: .9rem; margin: 0; }

/* 13. Testimonials ======================================================== */
.review-card {
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  padding: 1.9rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--ff-shadow); }
.review-stars { color: var(--ff-gold); font-size: .95rem; letter-spacing: .12em; margin-bottom: .85rem; }
.review-card p { color: var(--ff-body); font-size: .95rem; flex-grow: 1; }
.review-user { display: flex; align-items: center; gap: .8rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--ff-line); }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 800; color: #fff; font-size: 1rem;
  background: linear-gradient(135deg, var(--ff-primary-300), var(--ff-primary-600));
  flex-shrink: 0;
}
.review-user .nm { font-family: var(--ff-display); font-weight: 700; color: var(--ff-ink); font-size: .95rem; line-height: 1.3; }
.review-user .rt { font-size: .8rem; color: var(--ff-muted); }
.review-quote { font-size: 2rem; color: var(--ff-primary-soft); line-height: 1; margin-bottom: .4rem; }

/* 14. Airlines strip ====================================================== */
.airline-tile {
  border: 1px solid var(--ff-line);
  border-radius: 14px;
  background: #fff;
  padding: 1.1rem .8rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.airline-tile:hover { transform: translateY(-5px); box-shadow: var(--ff-shadow-sm); }
.airline-tile .airline-logo { margin: 0 auto .55rem; width: 44px; height: 44px; }
.airline-tile .nm { font-family: var(--ff-display); font-weight: 600; font-size: .82rem; color: var(--ff-ink-2); }

/* 15. Newsletter ========================================================== */
.newsletter {
  background: linear-gradient(120deg, var(--ff-ink), #0b3f47 60%, var(--ff-primary-600));
  border-radius: var(--ff-radius-lg);
  padding: 3rem 2.6rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255, 255, 255, .8); margin-bottom: 0; }
.newsletter .form-control {
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  padding-inline: 1rem;
}
.newsletter .form-control::placeholder { color: rgba(255, 255, 255, .58); }
.newsletter .form-control:focus {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: none;
  color: #fff;
}

/* 16. Inner page banner =================================================== */
.page-banner {
  position: relative;
  background: var(--ff-ink) url("../images/page-banner.svg") center/cover no-repeat;
  padding: 84px 0 76px;
  color: #fff;
  text-align: center;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(4, 18, 31, .9), rgba(4, 18, 31, .55));
}
.page-banner > .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: .6rem; }
.page-banner p { color: rgba(255, 255, 255, .8); max-width: 640px; margin: 0 auto; }
.page-banner .breadcrumb {
  justify-content: center;
  margin: 1.1rem 0 0;
  font-size: .9rem;
}
.page-banner .breadcrumb a { color: rgba(255, 255, 255, .82); }
.page-banner .breadcrumb a:hover { color: var(--ff-gold); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .5); }
.page-banner .breadcrumb-item.active { color: var(--ff-gold); }

/* 17. FAQ / accordion ===================================================== */
.ff-accordion .accordion-item {
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-sm) !important;
  margin-bottom: .9rem;
  overflow: hidden;
  background: #fff;
}
.ff-accordion .accordion-button {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--ff-ink);
  font-size: 1.02rem;
  padding: 1.15rem 1.3rem;
  background: #fff;
}
.ff-accordion .accordion-button:not(.collapsed) {
  color: var(--ff-primary);
  background: var(--ff-primary-soft);
  box-shadow: none;
}
.ff-accordion .accordion-button:focus { box-shadow: none; border-color: transparent; }
.ff-accordion .accordion-button::after {
  background-image: none;
  content: "\F4FE";
  font-family: "bootstrap-icons";
  font-size: 1rem;
  width: auto; height: auto;
  transition: transform .3s ease;
  color: var(--ff-primary);
}
.ff-accordion .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.ff-accordion .accordion-body { padding: 0 1.3rem 1.3rem; color: var(--ff-body); font-size: .95rem; }

/* 18. Contact ============================================================= */
.contact-card {
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius);
  padding: 1.9rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--ff-shadow); }
.contact-card .ic {
  width: 64px; height: 64px; margin: 0 auto 1.1rem;
  border-radius: 20px; display: grid; place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--ff-primary-300), var(--ff-primary-600));
  color: #fff;
  box-shadow: 0 10px 22px rgba(11, 122, 117, .22);
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.contact-card p, .contact-card a { font-size: .94rem; color: var(--ff-body); margin: 0; }
.contact-card a:hover { color: var(--ff-primary); }

.form-box {
  background: #fff;
  border: 1px solid var(--ff-line);
  border-radius: var(--ff-radius-lg);
  padding: 2.2rem;
  box-shadow: var(--ff-shadow-sm);
}
.form-label {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--ff-ink-2);
  margin-bottom: .4rem;
}
.form-control, .form-select {
  border: 1px solid var(--ff-line);
  border-radius: 11px;
  padding: .72rem .95rem;
  font-size: .95rem;
  color: var(--ff-ink);
  background-color: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ff-primary-300);
  box-shadow: 0 0 0 4px rgba(18, 163, 155, .12);
}
.form-control::placeholder { color: #a9bccd; }
textarea.form-control { min-height: 130px; resize: vertical; }

.map-embed {
  border-radius: var(--ff-radius);
  overflow: hidden;
  border: 1px solid var(--ff-line);
  min-height: 380px;
  background: var(--ff-soft);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* deal search field sits beside the section heading, full width once it wraps */
.deal-search-box { min-width: 260px; }
@media (max-width: 767.98px) { .deal-search-box { width: 100%; } }

/* 19. Footer ============================================================= */
.site-footer {
  background: var(--ff-ink);
  color: rgba(255, 255, 255, .7);
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../images/world-map.svg") right top/58% no-repeat;
  opacity: .5;
}
.site-footer > .container { position: relative; z-index: 1; }
.site-footer h5 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 1.3rem;
  position: relative;
  padding-bottom: .7rem;
}
.site-footer h5::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 30px; height: 2px; border-radius: 2px;
  background: var(--ff-accent);
}
.site-footer p { font-size: .93rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-size: .93rem;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .25s ease, transform .25s ease;
}
.footer-links a i { font-size: .7rem; color: var(--ff-primary-300); }
.footer-links a:hover { color: #fff; transform: translateX(4px); }

.footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.2rem; }
.footer-brand img {
    width: 245px;
}
.footer-brand .brand-name { font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; color: #fff; line-height: 1.05; letter-spacing: -.03em; }
.footer-brand .brand-name span { color: var(--ff-primary-300); }
.footer-brand .brand-tag { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 8px; align-items: baseline; margin-bottom: 1rem; font-size: .93rem; }
.footer-contact li i {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  color: var(--ff-primary-300);
}
.footer-contact li a { color: rgba(255, 255, 255, .82); }
.footer-contact li a:hover { color: var(--ff-gold); }

.footer-social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  transition: all .28s ease;
}
.footer-social a:hover { background: var(--ff-primary); transform: translateY(-3px); }

.footer-disclaimer {
  margin-top: 3rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--ff-radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  font-size: .82rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.75;
}

.footer-bottom {
  margin-top: 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.4rem 0;
  font-size: .88rem;
}
.footer-bottom a { color: rgba(255, 255, 255, .72); }
.footer-bottom a:hover { color: var(--ff-gold); }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: flex-end; }

/* 20. Back to top & helpers ============================================== */
#backTop {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: none;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ff-primary-300), var(--ff-primary-600));
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 12px 26px rgba(11, 122, 117, .3);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all .3s ease;
  z-index: 1030;
}
#backTop.show { opacity: 1; visibility: visible; transform: translateY(0); }

.call-float {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 1030;
  display: none;
  align-items: center; gap: .55rem;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8f5e, var(--ff-accent-600));
  color: #fff;
  font-family: var(--ff-display); font-weight: 700; font-size: .9rem;
  box-shadow: 0 12px 26px rgba(255, 122, 69, .35);
}
.call-float:hover { color: #fff; }

.divider-dot { color: var(--ff-line); }

.note-box {
  border-left: 3px solid var(--ff-primary);
  background: var(--ff-primary-soft);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--ff-radius-sm) var(--ff-radius-sm) 0;
  font-size: .92rem;
  color: var(--ff-ink-2);
}

.legal-body h2 { font-size: 1.5rem; margin-top: 2.2rem; margin-bottom: .8rem; }
.legal-body h3 { font-size: 1.15rem; margin-top: 1.6rem; margin-bottom: .6rem; }
.legal-body ul { padding-left: 1.15rem; }
.legal-body li { margin-bottom: .5rem; }

/* 21. Reveal animations ================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* 22. Responsive ========================================================= */

/* The desktop bar carries a 7-item menu plus phone, Login and the CTA.
   Below the widest container it has to give ground gradually or the
   right-hand cluster slides out past the container edge. */
@media (max-width: 1599.98px) {
  /* !important beats Bootstrap's .d-block utility on the label span */
  .main-nav .nav-phone .label { display: none !important; }
  .main-nav .nav-phone .number { font-size: .93rem; }
  .main-nav .nav-phone .icon { width: 38px; height: 38px; font-size: .95rem; }
  .main-nav .d-flex.gap-3 { gap: .6rem !important; }
}

@media (max-width: 1399.98px) {
  .ff-menu .nav-link { padding: .5rem .95rem !important; font-size: .9rem; }
  .ff-brand .brand-name { font-size: 1.15rem; }
  .ff-brand img { width: 190px; }

}

@media (max-width: 1199.98px) {
  .hero { padding: 58px 0 72px; }
  .usp-section { padding-top: 80px; }
  .about-media { padding-right: 0; }
  .about-media .sub-img { width: 48%; }
}

@media (max-width: 991.98px) {
  .section { padding: 68px 0; }
  .hero { padding: 46px 0 64px; }
  .usp-section { padding-top: 68px; }
  .newsletter { padding: 2.4rem 1.8rem; }
  .footer-bottom .legal-links { justify-content: flex-start; margin-top: .6rem; }
  .site-footer::before { opacity: .25; }
  .dest-card { height: 280px; }
  .dest-card.tall { height: 300px; }
  .dest-body p { max-height: 90px; opacity: 1; }
}

@media (max-width: 767.98px) {
  body { font-size: 15.5px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 2.2rem; }
  .hero-note { font-size: .95rem; }
  .hero-trust { gap: .4rem 1.2rem; font-size: .85rem; }
  .promo { padding: 64px 0; text-align: center; }
  .promo .promo-call { justify-content: center; }
  .about-media { padding-bottom: 0; }
  .about-media .sub-img { display: none; }
  .about-badge { left: 10px; top: 10px; padding: .7rem .9rem; }
  .form-box { padding: 1.5rem 1.2rem; }
  .newsletter { padding: 2rem 1.3rem; }
  .footer-disclaimer { padding: 1.1rem; }
  .call-float { display: inline-flex; }
  #backTop { bottom: 74px; }
  .deal-route .pt .code { font-size: 1.3rem; }
  .lead { font-size: 15px; padding: 0px 0px;}
}

@media (max-width: 575.98px) {
  .hero { padding: 36px 0 52px; }
  .hero h1 { font-size: 1.55rem; }
  .hero-tabs { margin-bottom: 1.1rem; }
  .usp-section { padding-top: 56px; }
  .dest-card { height: 240px; }
  .newsletter h2 { font-size: 1.45rem; }
}

/* Print */
@media print {
  .site-header, .site-footer, #backTop, .call-float, .ff-search, .promo { display: none !important; }
  body { color: #000; }
}
