/* =========================================================
   Kehar Travel Services Pvt Ltd — Your Visa Simplified
   ========================================================= */

/* ---------- Tokens (Kehar Travel Services palette) ---------- */
:root {
  --brand: #C0392B;          /* crimson */
  --brand-2: #8B2414;        /* deep crimson */
  --brand-3: #a93226;        /* hover red */
  --brand-soft: #fdf0ee;     /* red tint */
  --ink: #1a1614;            /* warm near-black */
  --ink-2: #4a3f3b;
  --muted: #8a7f7b;
  --line: #e8e0dc;           /* warm border */
  --bg: #ffffff;
  --bg-soft: #faf7f4;        /* cream */
  --accent: #b8860b;         /* gold */
  --gold: #b8860b;
  --gold-light: #fdf8ee;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(26, 22, 20, .06);
  --shadow: 0 14px 34px rgba(26, 22, 20, .08);
  --shadow-lg: 0 30px 60px rgba(139, 36, 20, .18);

  --shadow-red-sm: 0 10px 24px rgba(192, 57, 43, .35);
  --shadow-red-md: 0 16px 34px rgba(192, 57, 43, .45);

  --container: 1200px;

  --grad: linear-gradient(135deg, #C0392B 0%, #8B2414 60%, #5a1810 100%);
  --grad-warm: linear-gradient(135deg, #C0392B 0%, #b8860b 100%);
  --grad-dark: linear-gradient(135deg, #1a1614 0%, #3a201c 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-red-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-red-md); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-block { width: 100%; }

.link-muted { color: var(--ink-2); font-weight: 500; font-size: 15px; }
.link-muted:hover { color: var(--brand); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.navbar.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 20px rgba(16, 24, 40, .05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
}
.brand-mark {
  width: auto;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}
.brand-white .brand-mark img {
  filter: brightness(1.15);
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}
.brand-main {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  border-radius: 5px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 31;
  transition: background .2s ease, border-color .2s ease;
}
.hamburger:hover { background: #f1e9e4; }
.hamburger span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: top .25s ease, width .25s ease, transform .28s ease, opacity .2s ease;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; width: 14px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  width: 20px;
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Show the mobile-only Apply button only inside the hamburger panel */
.nav-apply-mobile { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background:
    radial-gradient(1200px 500px at 110% -10%, rgba(192, 57, 43, .18), transparent 60%),
    radial-gradient(900px 400px at -10% 20%, rgba(184, 134, 11, .14), transparent 60%),
    linear-gradient(180deg, #ffffff, #faf7f4);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 22, 20, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 22, 20, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .15);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 18px 0 20px;
}
.hero-title em { font-style: italic; color: var(--brand); }
.hero-title .sep { color: var(--muted); margin: 0 6px; font-family: 'Inter', sans-serif; }

.hero-sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 560px;
}
.hero-meta strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-meta span { font-size: 13px; color: var(--muted); }

/* Hero card */
.hero-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: rotate(1.5deg);
  transition: transform .3s ease;
}
.hero-card:hover { transform: rotate(0deg) translateY(-4px); }
.card-ribbon {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(192, 57, 43, .35);
}
.hero-card h3 { margin: 4px 0 6px; font-size: 22px; }
.muted { color: var(--muted); font-size: 14px; margin: 0 0 18px; }

/* Top destinations mini-list inside hero card */
.top-dest-list {
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.top-dest-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 5px;
  transition: background .2s ease, transform .2s ease;
  cursor: pointer;
}
.top-dest-list li:hover {
  background: var(--brand-soft);
  transform: translateX(3px);
}
.td-flag {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.td-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.td-body strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}
.td-body span {
  font-size: 12px;
  color: var(--muted);
}
.td-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 5px;
  background: var(--grad);
  color: #fff;
  flex-shrink: 0;
}
.tiny { font-size: 12px; color: var(--muted); margin-top: 10px; text-align: center; }

/* ---------- Trust strip ---------- */
.strip {
  background: linear-gradient(135deg, #1a1614 0%, #3a201c 100%);
  color: #fff;
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 200px at 20% 50%, rgba(192, 57, 43, .38), transparent 60%),
    radial-gradient(500px 200px at 90% 50%, rgba(184, 134, 11, .28), transparent 60%);
}
.strip-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.strip-grid strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.strip-grid span {
  color: #d8cfc9;
  font-size: 13px;
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section.alt { background: var(--bg-soft); }
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.kicker {
  display: inline-block;
  padding: 6px 14px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -.015em;
}
.lede { color: var(--muted); font-size: 17px; margin: 0; }

/* ---------- Destinations ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(139, 36, 20, .18);
  border-color: transparent;
}

.dest-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}
.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.dest-card:hover .dest-img img { transform: scale(1.08); }

.dest-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 22, 20, 0) 40%, rgba(26, 22, 20, .55) 100%);
  pointer-events: none;
}

.dest-flag-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(4px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(26, 22, 20, .12);
}
.dest-price-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 5px;
  box-shadow: 0 6px 14px rgba(192, 57, 43, .35);
}

.dest-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.dest-body h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.dest-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.dest-body .btn {
  align-self: flex-start;
  margin-top: auto;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.feature:hover::before { transform: scaleX(1); }
.feature-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.feature h4 { margin: 0 0 8px; font-size: 19px; }
.feature p { color: var(--muted); margin: 0; font-size: 15px; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(192, 57, 43, .3);
}
.steps h4 { margin: 0 0 6px; font-size: 18px; }
.steps p { color: var(--muted); margin: 0; font-size: 14px; }

/* ---------- CTA band ---------- */
.cta {
  background: var(--grad);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 200px at 10% 50%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(600px 200px at 90% 50%, rgba(255,255,255,.12), transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 8px;
}
.cta p { margin: 0; opacity: .9; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.cta .btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.cta .btn-primary { background: #fff; color: var(--brand); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.cta .btn-primary:hover { background: #fff; }

/* ---------- Reviews (auto-scroll marquee) ---------- */
.review-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 18px;
  /* soft fade on left/right edges */
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.review-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviewScroll 45s linear infinite;
  will-change: transform;
}
.review-marquee:hover .review-track { animation-play-state: paused; }

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.review p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.review footer { display: flex; flex-direction: column; margin-top: auto; }
.review footer strong { font-size: 15px; }
.review footer span { font-size: 13px; color: var(--muted); }

@media (max-width: 720px) {
  /* Stop auto-scroll on mobile so reviews stay stable and readable.
     Turn the marquee into a native horizontal swipe carousel with snap,
     breaking out of the .container padding for edge-to-edge swiping. */
  .review-marquee {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-left: -24px;
    margin-right: -24px;
    padding: 6px 0 18px;
    scrollbar-width: none;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .review-marquee::-webkit-scrollbar { display: none; }
  .review-track {
    animation: none;
    gap: 12px;
    width: auto;
    padding: 0 16px;
  }
  .review {
    flex: 0 0 calc(100% - 32px);
    max-width: 360px;
    scroll-snap-align: center;
    padding: 22px;
  }
  /* Hide the cloned duplicates on mobile (they're only needed for the
     seamless infinite auto-scroll which is off here). */
  .review-track > [aria-hidden="true"] { display: none; }
}

/* ---------- FAQ card grid ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.faq-card {
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 26px 24px;
  transition: border-color .25s ease, transform .25s ease;
}
.faq-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
}
.faq-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.faq-card h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; gap: 14px; }
  .faq-card { padding: 22px 20px; }
}

/* ---------- Our Other Brands ---------- */
.brands-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(800px 360px at 10% 0%, rgba(192, 57, 43, .08), transparent 60%),
    radial-gradient(700px 320px at 95% 100%, rgba(184, 134, 11, .09), transparent 65%),
    linear-gradient(180deg, #ffffff, var(--bg-soft));
  border-top: 1px solid var(--line);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -80% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--brand-soft);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(26, 22, 20, .1);
  border-color: transparent;
}
.brand-card:hover::before { opacity: 1; }
.brand-card > * { position: relative; z-index: 1; }
.brand-card-mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.02em;
  box-shadow: 0 8px 20px rgba(26, 22, 20, .12);
  flex-shrink: 0;
}
.brand-card-mark--violet { background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%); }
.brand-card-mark--teal   { background: linear-gradient(135deg, #0f766e 0%, #115e59 100%); }
.brand-card-mark--gold   { background: linear-gradient(135deg, #b8860b 0%, #8a6508 100%); }
.brand-card-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.brand-card-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.brand-card-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  transition: transform .25s ease;
}
.brand-card:hover .brand-card-cta {
  transform: translateX(4px);
}

/* ---------- Footer ---------- */
.footer {
  background: #1a1614;
  color: #c8bfb9;
  padding-top: 70px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(192, 57, 43, .18), transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(184, 134, 11, .12), transparent 60%);
  pointer-events: none;
}
.footer > * { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  text-align: left;
}
.footer-grid > div { text-align: left; }
.footer-grid .brand { align-self: flex-start; }
.footer-grid .footer-desc { text-align: left; }
.brand-white { color: #fff; }
.brand-white .brand-main {
  background: linear-gradient(135deg, #ffffff, #e8d9a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.brand-white .brand-sub {
  color: #a89a8f;
}
.footer h5 {
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer ul li { margin: 8px 0; }
.footer a { color: #c8bfb9; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-desc { font-size: 14px; margin: 10px 0; line-height: 1.6; }
.footer-desc.tiny { font-size: 12px; color: #a89a8f; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
  color: #a89a8f;
  text-align: center;
}
.footer-bottom p { margin: 4px 0; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(192, 57, 43, .4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 40;
}
.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 88px;         /* sits directly above .to-top (22 + 54 + 12 gap) */
  width: 54px; height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
  z-index: 41;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px rgba(37, 211, 102, .55);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: whatsappPulse 2s ease-out infinite;
}
@keyframes whatsappPulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 720px) {
  .to-top { width: 40px; height: 40px; font-size: 16px; right: 16px; bottom: 16px; }
  .whatsapp-float { width: 40px; height: 40px; bottom: 64px; right: 16px; }
  .whatsapp-float svg { width: 20px; height: 20px; }
}

/* ---------- Apply / Enquiry Modal ---------- */
.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.apply-modal[hidden] { display: none; }
.apply-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 20, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: applyFadeIn .25s ease both;
}
.apply-box {
  position: relative;
  background: #fff;
  border-radius: 14px;
  max-width: 560px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(26, 22, 20, .35);
  animation: applyPop .3s cubic-bezier(.2, .9, .3, 1.1) both;
  max-height: 90vh;
  overflow-y: auto;
}
.apply-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.apply-close:hover { background: var(--bg-soft); color: var(--ink); }
.apply-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.apply-head .brand-mark {
  height: 46px;
  flex-shrink: 0;
  background: transparent;
  display: flex;
  align-items: center;
}
.apply-head .brand-mark img {
  height: 46px;
  width: auto;
  display: block;
}
.apply-head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.apply-head .tiny { margin: 2px 0 0; }
.apply-intro {
  color: var(--muted);
  margin: 6px 0 22px;
  font-size: 14px;
  line-height: 1.5;
}
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.apply-full { grid-column: 1 / -1; }
.apply-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.apply-form label em {
  color: var(--brand);
  font-style: normal;
  margin-left: 2px;
}
.apply-form input,
.apply-form select {
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.apply-form input:focus,
.apply-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .15);
}
.apply-form input::placeholder { color: #b5ada9; font-weight: 400; }
.apply-form input:invalid:not(:placeholder-shown),
.apply-form select:invalid:not([data-touched="false"]) { border-color: #e5e0dc; }
.apply-note {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.55;
}
.apply-note a { color: var(--brand); }
.apply-success {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #eaf7ef;
  color: #1e7e3e;
  border: 1px solid #b8e0c4;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
}
.apply-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #fdecea;
  color: #b91c1c;
  border: 1px solid #f5c2c0;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.apply-error a { color: #b91c1c; text-decoration: underline; }
.apply-btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: applySpin .7s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}
#applySubmitBtn[data-loading="true"] .apply-btn-label { opacity: .7; }
#applySubmitBtn[data-loading="true"] .apply-btn-spinner { display: inline-block; }
#applySubmitBtn[data-loading="true"] { pointer-events: none; }
@keyframes applySpin { to { transform: rotate(360deg); } }
body.apply-open { overflow: hidden; }
@keyframes applyFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes applyPop {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 560px) {
  .apply-modal { padding: 12px; }
  .apply-box { padding: 26px 20px; border-radius: 10px; }
  .apply-grid { grid-template-columns: 1fr; gap: 12px; }
  .apply-head h3 { font-size: 16px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Interior Pages (About / Privacy / Terms / Cookies) ---------- */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(900px 400px at 50% 0%, rgba(192, 57, 43, .16), transparent 60%),
    radial-gradient(700px 300px at 85% 100%, rgba(184, 134, 11, .14), transparent 65%),
    linear-gradient(180deg, #ffffff, #faf7f4);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 22, 20, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 22, 20, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 75%);
  pointer-events: none;
}
.page-hero > .container { position: relative; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--brand); font-weight: 600; }
.breadcrumb span.sep { color: var(--muted); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -.015em;
}
.page-hero .lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}
.effective-date {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  padding: 4px 12px;
  background: var(--brand-soft);
  border-radius: 5px;
  color: var(--brand);
  font-weight: 600;
}

.page-content { padding: 70px 0 100px; background: #fff; }
.prose {
  max-width: 820px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.75;
}
.prose > p:first-child { font-size: 17px; color: var(--ink); }
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.4vw, 30px);
  color: var(--ink);
  margin: 48px 0 16px;
  letter-spacing: -.01em;
}
.prose h3 {
  font-size: 19px;
  color: var(--ink);
  margin: 32px 0 12px;
  font-weight: 700;
}
.prose h4 {
  font-size: 16px;
  color: var(--ink);
  margin: 24px 0 10px;
  font-weight: 700;
}
.prose p { margin: 0 0 16px; }
.prose strong { color: var(--ink); }
.prose a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.prose a:hover { color: var(--brand-2); }
.prose ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.prose ul li {
  position: relative;
  padding: 4px 0 4px 22px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.prose ul ul {
  margin: 8px 0 8px;
}
.prose .callout {
  background: var(--brand-soft);
  border-left: 3px solid var(--brand);
  padding: 16px 20px;
  border-radius: 0 5px 5px 0;
  margin: 24px 0;
  font-size: 15px;
}
.prose .callout strong { color: var(--brand); }
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
.prose .contact-card {
  background: linear-gradient(135deg, #faf7f4, #fff);
  border: 1px solid var(--line);
  padding: 22px 24px;
  border-radius: 5px;
  margin: 24px 0;
}
.prose .contact-card h4 { margin-top: 0; }
.prose .contact-card p { margin: 4px 0; }

.page-toc {
  position: sticky;
  top: 92px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.page-toc h5 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-toc ol {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: toc;
}
.page-toc ol li {
  counter-increment: toc;
  padding: 6px 0;
  font-size: 14px;
}
.page-toc ol li a {
  color: var(--ink-2);
  display: flex;
  gap: 10px;
}
.page-toc ol li a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--brand);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.page-toc ol li a:hover { color: var(--brand); }

.page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 960px) {
  .page-layout { grid-template-columns: 1fr; gap: 30px; }
  .page-toc { position: static; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 440px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-cta .link-muted { display: none; }
  .hamburger { display: grid; place-items: center; }

  /* Compact brand on mobile so it fits neatly next to hamburger */
  .brand { gap: 8px; }
  .brand-mark { height: 30px; }
  .brand-main { font-size: 15px; }
  .brand-sub  { font-size: 8px; letter-spacing: .16em; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 18px 24px 22px;
    gap: 2px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(26, 22, 20, .08);
    animation: navDrop .25s ease;
  }
  .nav-links.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-apply-mobile {
    display: inline-flex !important;
    justify-content: center;
    margin-top: 14px;
    padding: 12px 20px !important;
    border-bottom: none !important;
    color: #fff !important;
  }
  .nav-apply-mobile:hover { color: #fff !important; }
  @keyframes navDrop {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero { padding: 50px 0 70px; }

  /* ---------- Mobile typography scale ---------- */
  body { font-size: 14px; }
  .hero-title     { font-size: 30px; line-height: 1.15; }
  .hero-sub       { font-size: 14px; }
  .hero-meta      { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-meta strong { font-size: 17px; }
  .hero-meta span   { font-size: 11px; }

  .section-head h2 { font-size: 24px; }
  .section-head .lede,
  .lede            { font-size: 14px; }
  .kicker          { font-size: 12px; }

  .hero-card       { padding: 18px 16px; max-width: none; margin-left: -12px; margin-right: -12px; }
  .hero-card h3    { font-size: 16px; margin: 2px 0 4px; }
  .hero-card .muted { font-size: 11px; margin-bottom: 12px; }
  .hero-card .tiny  { font-size: 10.5px; }
  .card-ribbon     { font-size: 10px; padding: 4px 10px; top: -12px; left: 16px; }

  .top-dest-list          { padding-top: 8px; margin-bottom: 12px; gap: 2px; }
  .top-dest-list li       { gap: 10px; padding: 7px 6px; }
  .td-flag                { font-size: 18px; }
  .td-body strong         { font-size: 13px; }
  .td-body span           { font-size: 11px; }
  .td-tag                 { font-size: 9px; padding: 2px 7px; }

  .dest-card h3    { font-size: 15px; }
  .dest-card p     { font-size: 12.5px; }
  .dest-flag-tag,
  .dest-price-tag  { font-size: 11px; }
  .btn-sm          { font-size: 12px; padding: 0 14px; height: 35px; line-height: 35px; }

  .feature .feature-num { font-size: 28px; }
  .feature h4      { font-size: 16px; }
  .feature p       { font-size: 13px; }

  .steps h4        { font-size: 15px; }
  .steps p         { font-size: 13px; }
  .step-num        { font-size: 15px; }

  .cta h2          { font-size: 22px; }
  .cta p           { font-size: 13px; }

  .review p        { font-size: 13.5px; line-height: 1.55; }
  .review footer strong { font-size: 14px; }
  .review footer span   { font-size: 12px; }
  .stars           { font-size: 15px; }

  .faq-card h4     { font-size: 14px; }
  .faq-card p      { font-size: 13px; }
  .faq-num         { font-size: 11px; }

  .strip-grid strong { font-size: 18px; }
  .strip-grid span   { font-size: 11px; }

  .footer h5       { font-size: 13px; }
  .footer a,
  .footer-desc     { font-size: 13px; }
  .footer-desc.tiny,
  .footer-bottom p { font-size: 11.5px; }

  .btn             { font-size: 14px; padding: 10px 18px; }
  .btn-lg          { font-size: 14px; padding: 12px 20px; }

  .section { padding: 70px 0; }
  .dest-grid { grid-template-columns: 1fr; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .brands-section { padding: 60px 0; }
  .brands-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .brand-card { padding: 20px; gap: 14px; }
  .brand-card-mark { width: 46px; height: 46px; font-size: 22px; border-radius: 10px; }
  .brand-card-body h3 { font-size: 17px; }
  .brand-card-body p  { font-size: 13px; margin-bottom: 10px; }
  .brand-card-cta     { font-size: 12px; }
  .cta-actions { width: 100%; flex-direction: column; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; text-align: center; }
}
