/* ============================================
   Aleef Travel Service Pvt Ltd — Site Styles
   Brand: cream + deep teal + brand blue + gold
   ============================================ */

:root {
  --cream: #FBF1D8;
  --cream-2: #F5E6C3;
  --paper: #FFFFFF;
  --ink: #0F3340;          /* deep teal — primary brand */
  --ink-2: #1B4756;
  --body: #2D4854;
  --muted: #6E8189;
  --line: rgba(15,51,64,0.12);
  --line-strong: rgba(15,51,64,0.22);
  --blue: #0E78BC;         /* aleef logo blue */
  --blue-deep: #0A5F96;
  --gold: #F5A623;         /* logo swoosh accent */
  --gold-deep: #C9821A;
  --red: #C7402E;
  --green: #2F8A4E;
  --whatsapp: #25D366;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-card: 0 2px 4px rgba(15,51,64,.06), 0 12px 28px rgba(15,51,64,.08);
  --shadow-pop: 0 8px 18px rgba(15,51,64,.16);

  --maxw: 1240px;

  --font-display: "Anton", "Oswald", "Bebas Neue", "Impact", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--blue); }
ul, ol { margin: 0; padding-left: 1.2rem; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 241, 216, 0.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 14px 24px;
  max-width: var(--maxw); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.brand img {
  height: 64px; width: auto;
  mix-blend-mode: multiply;
}
.brand-text { display: none; line-height: 1.1; }
.brand-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.brand-iata { height: 22px !important; width: auto; mix-blend-mode: normal !important; }
@media (min-width: 900px) { .brand-text { display: block; } }

.nav {
  display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap;
}
.nav a {
  display: inline-block;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.nav a:hover { background: rgba(15,51,64,.06); color: var(--ink); }
.nav a.active { background: var(--ink); color: #FFF; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px !important;
  background: var(--blue) !important;
  color: #FFF !important;
  font-weight: 700 !important;
  margin-left: 4px;
}
.nav-cta:hover { background: var(--blue-deep) !important; color: #FFF !important; }

.hamburger {
  display: none;
  background: var(--ink); color: #FFF;
  border: 0; padding: 10px 14px;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .brand .brand-meta { display: none; }
}
@media (max-width: 1180px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 4px; padding: 12px 16px 16px;
    background: var(--cream); border-bottom: 1px solid var(--line); align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; }
  .hamburger { display: inline-block; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: #FFF; }
.btn-primary:hover { background: #07252F; color: #FFF; }
.btn-blue { background: var(--blue); color: #FFF; }
.btn-blue:hover { background: var(--blue-deep); color: #FFF; }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: #FFF; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #FFF; }
.btn-whatsapp { background: var(--whatsapp); color: #FFF; }
.btn-whatsapp:hover { background: #1FB957; color: #FFF; }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 17px 30px; font-size: 16px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
}
.hero h1.display {
  font-size: clamp(48px, 6.4vw, 86px);
  margin-bottom: 28px;
  line-height: 0.98;
}
.hero p.lede {
  font-size: 18px;
  color: var(--body);
  margin: 0 0 30px;
  max-width: 540px;
}
.hero .cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero-art {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #DCE9F2 0%, #B9D2E3 100%);
  box-shadow: var(--shadow-pop);
}
.hero-art::after {
  display: none;
}
.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.hero-stat .n {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat .l { font-size: 13px; color: var(--muted); }

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
section.dark {
  background: var(--ink);
  color: rgba(255,255,255,.86);
}
section.dark h1, section.dark h2, section.dark h3 { color: #FFF; }
section.dark .eyebrow { color: var(--gold); }
section.dark .eyebrow::before { background: var(--gold); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}
@media (max-width: 720px) { .section-head { grid-template-columns: 1fr; align-items: start; } }
.section-head h2.display { font-size: clamp(40px, 5.4vw, 72px); }
.section-head p { color: var(--muted); margin: 0; max-width: 460px; }

/* ============ CARD STYLES ============ */
.card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--line-strong);
}
.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  background: var(--ink);
}
.svc-card:hover h3, .svc-card:hover p, .svc-card:hover .svc-arrow { color: #FFF !important; }
.svc-card:hover .svc-num { color: var(--gold); }
.svc-card .svc-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.svc-card h3 {
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 700;
}
.svc-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
}
.svc-card .svc-arrow {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}

/* destination chip card */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 980px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
.dest {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-2);
  cursor: pointer;
  transition: transform .2s ease;
}
.dest:hover { transform: translateY(-3px); }
.dest .placeholder {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(15,51,64,.06) 0 12px, transparent 12px 24px), var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-family: var(--font-display);
  font-size: 28px; text-align: center; padding: 12px;
}
.dest .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(15,51,64,.92));
  color: #FFF;
}
.dest .meta .name { font-weight: 700; font-size: 16px; }
.dest .meta .from { font-size: 12px; opacity: .8; }

/* ============ INFO ROW ============ */
.info-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .info-row { grid-template-columns: 1fr; gap: 32px; } }
.info-row.flip { direction: rtl; }
.info-row.flip > * { direction: ltr; }

.bullet-list { list-style: none; padding: 0; margin: 24px 0 0; }
.bullet-list li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 15px;
  color: var(--ink-2);
}
.bullet-list li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--cream);
  border: 1.5px solid var(--ink);
}
.bullet-list.dark li { color: rgba(255,255,255,.86); border-color: rgba(255,255,255,.12); }
.bullet-list.dark li::before { box-shadow: inset 0 0 0 4px var(--ink); }

/* image placeholder for hi-fi */
.img-ph {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(15,51,64,.04) 0 14px, transparent 14px 28px),
    linear-gradient(180deg, #DEEDF6 0%, #B8D7E8 100%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.img-ph.tall { aspect-ratio: 3/4; }
.img-ph .ph-label {
  font-family: ui-monospace, "JetBrains Mono", "Menlo", monospace;
  font-size: 11px;
  color: var(--ink);
  background: rgba(255,255,255,.85);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ FAQ ============ */
.faq-list { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 50px 22px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 28px; line-height: 1; color: var(--ink); font-weight: 400;
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  display: none;
  padding: 0 0 24px;
  color: var(--body);
  font-size: 15px;
  max-width: 760px;
}
.faq-item.open .faq-a { display: block; }

/* ============ FORM ============ */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error {
  font-size: 12px; color: var(--red); display: none;
}
.field.error input, .field.error select, .field.error textarea {
  border-color: var(--red);
}
.field.error .error { display: block; }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: var(--ink);
  color: #FFF;
  border-radius: 28px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .cta-strip { grid-template-columns: 1fr; padding: 32px 24px; }
}
.cta-strip h2.display { font-size: clamp(36px, 5vw, 60px); color: #FFF; }
.cta-strip p { color: rgba(255,255,255,.78); margin: 10px 0 0; }
.cta-strip .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip::before {
  content: "";
  position: absolute; right: -100px; top: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.16);
  filter: blur(0px);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 72px 0 24px;
  margin-top: 0;
}
.site-footer .wrap { max-width: var(--maxw); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 50px; background: var(--cream); padding: 6px 10px; border-radius: 8px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.65); margin: 0 0 16px; }
.footer-col h4 {
  color: #FFF;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 6px 0 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-bottom .socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  margin-left: 8px;
  transition: background .15s ease;
}
.footer-bottom .socials a:hover { background: var(--gold); color: var(--ink); }

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 60;
  background: var(--whatsapp);
  color: #FFF;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(37,211,102,.35);
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: transform .15s ease;
}
.float-wa:hover { transform: translateY(-2px) scale(1.02); color: #FFF; }
.float-wa .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #FFF;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

/* ============ PAGE SUBHERO (non-home pages) ============ */
.subhero {
  padding: 48px 0 60px;
  border-bottom: 1px solid var(--line);
}
.subhero .crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.subhero .crumbs a { color: var(--muted); }
.subhero .crumbs a:hover { color: var(--ink); }
.subhero h1.display {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 18px;
}
.subhero p.lede {
  max-width: 640px;
  font-size: 17.5px;
  color: var(--body);
}

/* ============ PILL / TAG ============ */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(15,51,64,.06);
  color: var(--ink);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
}
.tag-blue { background: rgba(14,120,188,.10); color: var(--blue); }
.tag-gold { background: rgba(245,166,35,.16); color: var(--gold-deep); }
.tag-green { background: rgba(47,138,78,.12); color: var(--green); }

/* badge row */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 20px 36px; align-items: center;
  padding: 24px 0;
}
.trust-row .trust {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.trust-row .trust b { color: var(--ink); letter-spacing: -0.01em; text-transform: none; font-size: 15px; }

/* ====== specific helpers ====== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .three-col { grid-template-columns: 1fr; } }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .four-col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .four-col { grid-template-columns: 1fr; } }

/* Currency converter card */
.fx-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.fx-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: end;
}
@media (max-width: 620px) { .fx-row { grid-template-columns: 1fr; } }
.fx-row .swap-btn {
  align-self: end;
  margin-bottom: 6px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 20px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.fx-row .swap-btn:hover { background: var(--ink); color: #FFF; border-color: var(--ink); transform: rotate(180deg); }
.fx-result {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.fx-result .big {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--ink);
  line-height: 1;
}
.fx-result .small { color: var(--muted); font-size: 13px; }

.fx-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.fx-table th, .fx-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.fx-table th {
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.fx-table td.amount {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
}
.fx-table tr:hover td { background: rgba(15,51,64,.03); }

/* skip link & a11y */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* anchored visa list */
.visa-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}
@media (max-width: 620px) { .visa-list { grid-template-columns: 1fr; } }
.visa-list a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700;
  color: var(--ink);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.visa-list a:hover {
  background: var(--ink); color: #FFF; border-color: var(--ink);
}
.visa-list a .arr { opacity: .5; }
.visa-list a:hover .arr { opacity: 1; }

/* package cards (pricing-ish) */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .18s ease, border-color .18s ease;
}
.pkg:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.pkg.featured {
  background: var(--ink);
  color: #FFF;
  border-color: var(--ink);
}
.pkg.featured h3 { color: #FFF; }
.pkg.featured .pkg-feat li { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.10); }
.pkg.featured .pkg-feat li::before { background: var(--gold); }
.pkg.featured .pkg-price b { color: #FFF; }
.pkg-price { font-size: 14px; color: var(--muted); }
.pkg-price b { font-family: var(--font-display); font-size: 36px; color: var(--ink); display: block; margin-top: 4px; }
.pkg-feat { list-style: none; padding: 0; margin: 8px 0 18px; }
.pkg-feat li {
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--body);
  position: relative;
}
.pkg-feat li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 12px; height: 2px; background: var(--blue);
}


/* ===== Trust logo row ===== */
.trust-logos {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 14px 22px;
  flex-wrap: wrap;
  padding: 22px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 130px;
}
.trust-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  opacity: .95;
  transition: transform .15s ease, opacity .15s ease;
}
.trust-logo:hover { opacity: 1; transform: translateY(-2px); }
.trust-caption {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  line-height: 1.2;
}
.rbi-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
}
.rbi-badge .rbi-mark {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  background: var(--gold);
  padding: 9px 10px 7px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}
.rbi-badge .rbi-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.2;
}
.rbi-badge.lg .rbi-mark { font-size: 36px; padding: 12px 14px 10px; }
.rbi-badge.lg .rbi-text { font-size: 13px; }
.rbi-badge.on-dark { border-color: rgba(255,255,255,.3); }
.rbi-badge.on-dark .rbi-text { color: #FFF; }

@media (max-width: 720px) {
  .trust-logos { justify-content: center; }
  .trust-logo { height: 46px; }
}

/* ===== Destination card with image-slot ===== */
.dest .dest-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.dest .placeholder {
  z-index: 0;
}
.dest image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.dest image-slot::part(frame) {
  background: transparent;
}
.dest image-slot::part(empty) {
  opacity: 0;
  transition: opacity .15s ease;
}
.dest:hover image-slot:not([data-filled])::part(empty) {
  opacity: 1;
}
.dest image-slot::part(ring) {
  border-color: transparent;
}
.dest image-slot[data-filled]::part(ring) {
  display: none;
}
.dest .meta {
  z-index: 3;
}
