﻿/* =========================================================
   Shyam Tours â€” design tokens & site-wide styles
   ========================================================= */
:root {
  --brand: #0d5c52;
  --brand-dark: #073430;
  --brand-light: #e4f1ec;
  --accent: #f4653a;
  --accent-dark: #d94b21;
  --lime: #9fc770;
  --lime-dark: #79a350;
  --gold: #eea23c;
  --ink: #161616;
  --muted: #5c6b7a;
  --bg: #f8f7f3;
  --border: #e6e4dc;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(23, 32, 58, 0.08);
  --shadow-hover: 0 16px 40px rgba(23, 32, 58, 0.14);
  --font-heading: 'Fraunces', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  animation: page-fade-in 0.5s ease both;
}
@keyframes page-fade-in { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { animation: none; }
  .reveal-fade, .reveal-up { opacity: 1 !important; transform: none !important; animation: none !important; }
}

h1, h2, h3, h4, h5, .font-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
em { font-style: italic; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Bootstrap's own .container-xxl already handles width/max-width/margin
   responsively (fluid until 1400px, capped at 1320px beyond that) â€” just
   give it more breathing room than Bootstrap's tight default gutter. */
.container-xxl {
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}

/* Raise Bootstrap's default 1320px cap so large desktops use more of the screen */
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1965px;
  }
}

.section { padding: 72px 0; }
.section-sm { padding: 40px 0; }
.bg-white { background: var(--white); }
.bg-brand-light { background: var(--brand-light); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin-bottom: 10px;
}

.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 36px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.28), transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.btn:hover::before { opacity: 1; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.35);
}
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}
.btn-outline-light:hover { background: #fff; color: var(--brand-dark); }

.btn-brand {
  background: var(--brand);
  color: #fff;
}
.btn-brand:hover { background: var(--brand-dark); color: #fff; }

.btn-outline-brand {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}
.btn-outline-brand:hover { background: var(--brand); color: #fff; }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Navbar: transparent glass overlay that solidifies on scroll ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(5, 28, 31, 0.55), rgba(5, 28, 31, 0));
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(20, 33, 61, 0.1);
}
.site-header.is-scrolled .navbar { padding-top: 0.6rem !important; padding-bottom: 0.6rem !important; }
.site-header.is-scrolled .navbar-brand-logo img { height: 56px; }
.navbar-brand-logo img { transition: height 0.3s ease; }
.site-header .navbar { transition: padding 0.3s ease; }
.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.site-header.is-scrolled .navbar-brand { color: var(--brand-dark) !important; }
.navbar-brand-logo img { height: 80px; width: 80px; object-fit: cover; border-radius: 50%; display: block; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.5); transition: height 0.3s ease, width 0.3s ease; }
.site-header.is-scrolled .navbar-brand-logo img { width: 56px; }
.footer-logo img { height: 46px; width: 46px; object-fit: cover; border-radius: 50%; box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15); }
.navbar-brand .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}
.site-header .nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92) !important;
  padding: 8px 14px !important;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-header .nav-link.active,
.site-header .nav-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff !important;
}
.site-header.is-scrolled .nav-link { color: var(--ink) !important; }
.site-header.is-scrolled .nav-link.active,
.site-header.is-scrolled .nav-link:hover {
  background: var(--brand-light);
  color: var(--brand-dark) !important;
}
.header-phone {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.site-header.is-scrolled .header-phone { color: var(--brand); }
.navbar-toggler {
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 8px 11px;
  transition: background 0.2s ease, transform 0.15s ease, color 0.3s ease;
}
.navbar-toggler:hover { background: rgba(255, 255, 255, 0.28); }
.navbar-toggler:active { transform: scale(0.94); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25); }
.site-header.is-scrolled .navbar-toggler { background: var(--brand-light); color: var(--brand-dark); }
.site-header.is-scrolled .navbar-toggler:hover { background: #dcecea; }
.site-header.is-scrolled .navbar-toggler:focus { box-shadow: 0 0 0 3px var(--brand-light); }
.navbar-toggler-icon {
  background-image: none;
  width: 1.4em;
  height: 1.4em;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: currentColor;
}


/* ---------- Homepage hero: full-bleed, centered, glass header overlays it ---------- */
.hero-slider { min-height: min(780px, 100vh); position: relative; overflow: hidden; color: #fff; background: #153b3d; }
.hero-slider::before, .hero-slider::after { content: ""; position: absolute; z-index: 1; border-radius: 50%; filter: blur(70px); pointer-events: none; mix-blend-mode: screen; opacity: 0.75; animation: hero-glow-drift 12s ease-in-out infinite alternate; }
.hero-slider::before { top: -10%; right: 8%; width: clamp(260px, 26vw, 420px); height: clamp(260px, 26vw, 420px); background: radial-gradient(circle, rgba(255, 176, 108, 0.55), transparent 70%); }
.hero-slider::after { bottom: -14%; left: 4%; width: clamp(220px, 22vw, 360px); height: clamp(220px, 22vw, 360px); background: radial-gradient(circle, rgba(20, 163, 181, 0.5), transparent 70%); animation-delay: -6s; }
@keyframes hero-glow-drift { from { transform: translate(0, 0) scale(1); } to { transform: translate(-4%, 6%) scale(1.12); } }
.hero-slides { position: absolute; inset: 0; z-index: 2; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease, visibility .65s ease; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-modern-bg, .hero-modern-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-modern-bg { object-fit: cover; object-position: center 52%; animation: hero-modern-zoom 16s ease-out both; filter: saturate(1.35) contrast(1.08) brightness(1.08); }
.hero-modern-overlay { background: linear-gradient(0deg, rgba(5,28,31,.82) 0%, rgba(5,28,31,.32) 55%, rgba(5,28,31,.38) 100%), radial-gradient(circle at 50% 0%, rgba(5,28,31,.55), transparent 50%), radial-gradient(circle at 82% 15%, rgba(255,176,108,.2), transparent 42%); }
.hero-modern-inner {
  position: relative;
  z-index: 3;
  min-height: min(780px, 100vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 20px 90px;
}
.hero-modern-copy { max-width: 820px; display: flex; flex-direction: column; align-items: center; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; color: #ffe3bf; font-size: .73rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 26px; padding: 7px 16px 7px 12px; border-radius: 999px; background: linear-gradient(120deg, rgba(255,176,108,.22), rgba(20,163,181,.18)); border: 1px solid rgba(255,209,157,.4); box-shadow: 0 0 24px rgba(255,176,108,.25); }
.hero-kicker i { animation: hero-kicker-pulse 2.2s ease-in-out infinite; }
.hero-modern h1 { color: #fff; font-size: clamp(3rem, 6.4vw, 6.4rem); line-height: 1; letter-spacing: -.035em; margin-bottom: 25px; text-shadow: 0 4px 32px rgba(0,0,0,.35); }
.hero-modern h1 em { color: #ffb06c; font-style: italic; font-weight: 500; text-shadow: 0 0 28px rgba(255,176,108,.65), 0 0 60px rgba(255,176,108,.35); }
.hero-modern-copy p { max-width: 560px; margin: 0 auto 31px; color: rgba(255,255,255,.85); font-size: 1.08rem; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 25px; flex-wrap: wrap; }
.hero-actions .btn { padding: 13px 20px; }
.hero-actions .btn-accent { box-shadow: 0 10px 24px rgba(255,107,53,.35), 0 0 0 0 rgba(255,176,108,.55); animation: hero-cta-glow 2.6s ease-in-out infinite; }
.hero-text-link { color: #fff; font-size: .92rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 4px; transition: color .2s ease, text-shadow .2s ease; }
.hero-text-link i { margin-left: 7px; transition: margin .2s ease; }
.hero-text-link:hover { color: #ffd19d; text-shadow: 0 0 16px rgba(255,209,157,.7); }
.hero-text-link:hover i { margin-left: 11px; }
@keyframes hero-kicker-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes hero-cta-glow { 0%, 100% { box-shadow: 0 10px 24px rgba(255,107,53,.35), 0 0 0 0 rgba(255,176,108,.5); } 50% { box-shadow: 0 10px 28px rgba(255,107,53,.5), 0 0 26px 6px rgba(255,176,108,.35); } }
.hero-slider-arrow { position: absolute; z-index: 4; top: 50%; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: rgba(5,28,31,.4); border: 1px solid rgba(255,255,255,.45); border-radius: 50%; transform: translateY(-50%); transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.hero-slider-arrow:hover { background: var(--accent); box-shadow: 0 0 22px rgba(255,107,53,.55); }
.hero-slider-prev { left: 22px; }
.hero-slider-next { right: 22px; }
.hero-slider-dots { position: absolute; z-index: 4; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-slider-dots button { width: 28px; height: 4px; padding: 0; border: 0; background: rgba(255,255,255,.42); border-radius: 4px; transition: width .25s ease, background .25s ease, box-shadow .25s ease; }
.hero-slider-dots button.active { width: 52px; background: #ffb06c; box-shadow: 0 0 12px rgba(255,176,108,.8); }
@keyframes hero-modern-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }

/* Floating glass stat card straddling the seam between the hero and the next section */
.hero-float-stats-wrap { position: relative; z-index: 5; }
.hero-float-stats {
  position: relative;
  margin: -34px auto 0;
  max-width: 1140px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(20, 33, 61, 0.18), 0 0 40px rgba(255, 176, 108, 0.14);
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-float-stat { display: flex; align-items: center; gap: 14px; flex: 1 1 190px; min-width: 0; }
.hero-float-stat i {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 8px 18px rgba(255, 107, 53, 0.3);
}
.hero-float-stat div { min-width: 0; }
.hero-float-stat strong { display: block; font-family: var(--font-heading); font-size: 1.3rem; color: var(--ink); line-height: 1.2; }
.hero-float-stat span { display: block; font-size: 0.8rem; color: var(--muted); }
.hero-float-divider { width: 1px; align-self: stretch; background: var(--border); flex: none; }
@media (max-width: 900px) { .hero-float-divider { display: none; } }

@media (max-width: 992px) {
  .hero-modern-inner { padding-top: 130px; }
  .hero-modern h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
}
/* Short browser windows (laptops with a lot of chrome, browser zoom, etc.) â€”
   shrink the hero's vertical rhythm so content never overflows into the
   floating stats card below it. */
@media (min-width: 993px) and (max-height: 860px) {
  .hero-slider, .hero-modern-inner { min-height: 640px; }
  .hero-modern-inner { padding: 120px 20px 60px; }
  .hero-modern h1 { font-size: clamp(2.4rem, 4.6vw, 4.2rem); margin-bottom: 16px; }
  .hero-kicker { margin-bottom: 16px; }
  .hero-modern-copy p { margin-bottom: 20px; font-size: 1rem; }
}
@media (max-width: 700px) {
  .hero-slider { min-height: 680px; }
  .hero-modern-inner { min-height: 680px; padding: 110px 18px 70px; }
  .hero-modern-overlay { background: linear-gradient(0deg, rgba(5,28,31,.92) 0%, rgba(5,28,31,.42) 100%); }
  .hero-modern h1 { font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .hero-modern-copy p { font-size: 1rem; }
  .hero-slider-arrow { top: auto; bottom: 18px; transform: none; width: 36px; height: 36px; }
  .hero-slider-prev { left: 18px; }
  .hero-slider-next { right: 18px; }
  .hero-slider-dots { bottom: 26px; }
  .hero-float-stats { margin-top: -40px; flex-direction: column; align-items: stretch; gap: 18px; padding: 22px; }
  .hero-float-stat { flex-basis: auto; }
}
@media (max-width: 480px) { .whatsapp-fab { width: 48px; height: 48px; font-size: 1.3rem; bottom: 16px; right: 16px; } }


/* Search / filter bar overlapping hero */
.search-card {
  position: relative;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 22px;
  margin-top: -56px;
}
.search-card form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 14px;
  align-items: end;
}

/* ---------- Featured package banner ---------- */
.package-banner-section { padding: 38px 0 0; background: var(--bg); }
.package-banner-slider { position: relative; height: clamp(250px, 27vw, 382px); overflow: hidden; border-radius: 10px; background: #153b3d; box-shadow: var(--shadow); }
.package-banner-slides, .package-banner-slide { position: absolute; inset: 0; }.package-banner-slide { opacity: 0; visibility: hidden; transition: opacity .6s ease, visibility .6s ease; }.package-banner-slide.active { opacity: 1; visibility: visible; z-index: 1; }.package-banner-slide img, .package-banner-shade { position: absolute; inset: 0; width: 100%; height: 100%; }.package-banner-slide img { object-fit: cover; object-position: center; }.package-banner-shade { background: linear-gradient(90deg, rgba(7,28,32,.86) 0%, rgba(7,28,32,.52) 47%, rgba(7,28,32,.05) 100%); }.package-banner-content { position: absolute; z-index: 1; left: clamp(24px, 5vw, 76px); top: 50%; width: min(530px, 60%); transform: translateY(-50%); }.package-banner-content > span { color: #ffd19d; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }.package-banner-content h2 { color: #fff; font-size: clamp(2rem, 4vw, 4rem); line-height: 1; margin: 10px 0 13px; }.package-banner-content p { max-width: 390px; color: rgba(255,255,255,.8); font-size: .92rem; margin-bottom: 20px; }.package-banner-content .btn { padding: 10px 16px; font-size: .82rem; }.package-banner-index { position: absolute; z-index: 1; right: 28px; top: 24px; color: #fff; font-family: var(--font-heading); font-size: 1.05rem; }.package-banner-index span { color: rgba(255,255,255,.55); font-family: var(--font-body); font-size: .7rem; font-weight: 400; }.package-banner-arrow { position: absolute; z-index: 2; top: 50%; width: 38px; height: 38px; display: grid; place-items: center; color: #fff; background: rgba(7,28,32,.38); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; transform: translateY(-50%); }.package-banner-arrow:hover { background: var(--accent); }.package-banner-prev { left: 18px; }.package-banner-next { right: 18px; }.package-banner-dots { position: absolute; z-index: 2; left: 50%; bottom: 18px; display: flex; gap: 7px; transform: translateX(-50%); }.package-banner-dots button { width: 24px; height: 3px; padding: 0; border: 0; border-radius: 3px; background: rgba(255,255,255,.45); }.package-banner-dots button.active { width: 44px; background: #ffb06c; }
@media (max-width: 700px) { .package-banner-section { padding-top: 24px; }.package-banner-slider { height: 420px; }.package-banner-shade { background: linear-gradient(0deg, rgba(7,28,32,.9) 0%, rgba(7,28,32,.25) 100%); }.package-banner-content { left: 22px; right: 22px; top: auto; bottom: 54px; width: auto; transform: none; }.package-banner-content h2 { font-size: 2.3rem; }.package-banner-content p { font-size: .85rem; }.package-banner-index { right: 20px; top: 18px; }.package-banner-arrow { top: auto; bottom: 16px; transform: none; width: 32px; height: 32px; }.package-banner-prev { left: auto; right: 60px; }.package-banner-next { right: 18px; }.package-banner-dots { left: 20px; bottom: 30px; transform: none; } }

/* ---------- Traveller video carousel (scrapbook style, matches "plan"/"news" sections) ---------- */
.video-stories-section { position: relative; overflow: hidden; padding: 92px 0 80px; background: var(--bg); }

.video-blob-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.5; }
.video-blob-glow-a { top: -10%; left: 30%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(13, 92, 82, 0.14), transparent 70%); }
.video-blob-glow-b { bottom: -14%; right: 20%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(244, 101, 58, 0.12), transparent 70%); }

.video-doodle {
  position: absolute;
  z-index: 1;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--brand);
  opacity: 0.7;
  pointer-events: none;
}
.video-doodle-left { top: 64px; left: clamp(16px, 4%, 90px); transform: rotate(-4deg); }
.video-doodle-right { bottom: 60px; right: clamp(16px, 4%, 90px); text-align: right; transform: rotate(3deg); }
@media (max-width: 1100px) { .video-doodle { display: none; } }

.video-flight-doodle { position: absolute; top: 30px; right: clamp(16px, 6%, 120px); z-index: 1; width: 190px; text-align: right; pointer-events: none; }
.video-flight-script { display: block; font-family: var(--font-script); font-weight: 700; font-size: 1.25rem; line-height: 1.2; color: var(--brand); margin-bottom: 2px; }
.video-flight-svg { width: 100%; height: 70px; overflow: visible; }
.video-flight-svg path { fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-dasharray: 4 6; opacity: 0.35; }
.video-flight-icon, .video-flight-plane { position: absolute; top: 30px; right: -4px; color: var(--accent); font-size: 1.15rem; transform: rotate(25deg); }
@media (max-width: 1300px) { .video-flight-doodle { display: none; } }

.video-section-heading { position: relative; z-index: 1; max-width: 700px; margin: 0 auto 30px; text-align: center; }
.video-section-heading .eyebrow { letter-spacing: 0.22em; }
.video-section-heading .section-title { margin-bottom: 10px; }
.video-section-heading p { color: var(--muted); line-height: 1.7; margin: 0; }

.video-filter-pills {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.video-filter {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.video-filter:hover { border-color: var(--brand); color: var(--brand); }
.video-filter.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.video-no-results { padding: 24px 0; }

.video-carousel { position: relative; z-index: 1; max-width: 1180px; height: 460px; margin: 0 auto; }
.video-track { position: absolute; inset: 0; }
.video-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(740px, 66vw);
  height: 420px;
  padding: 8px;
  border: 6px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(23, 32, 58, 0.16);
  transform: translateX(-50%) scale(0.78);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s ease, opacity 0.55s ease, filter 0.55s ease;
}
.video-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 13px; }
.video-slide.is-active { transform: translateX(-50%) scale(1); opacity: 1; z-index: 3; pointer-events: auto; }
.video-slide.is-prev, .video-slide.is-next { opacity: 0.75; z-index: 2; pointer-events: auto; filter: saturate(0.8); }
.video-slide.is-prev { transform: translateX(calc(-50% - 380px)) scale(0.8); }
.video-slide.is-next { transform: translateX(calc(-50% + 380px)) scale(0.8); }

.video-slide-shade {
  position: absolute;
  inset: 8px;
  border-radius: 13px;
  background: linear-gradient(0deg, rgba(6, 20, 35, 0.85) 0%, rgba(6, 20, 35, 0.1) 45%, rgba(6, 20, 35, 0.35) 100%);
  pointer-events: none;
}
.video-slide-label {
  position: absolute;
  top: 26px; left: 26px;
  z-index: 1;
  color: #ffd19d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.video-slide.is-prev .video-slide-label, .video-slide.is-next .video-slide-label { display: none; }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  font-size: 1.4rem;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1;
}
.video-slide:hover .video-play { background: var(--accent); }
.video-slide-body {
  position: absolute;
  left: 26px; right: 26px; bottom: 22px;
  z-index: 1;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.video-slide-body strong { font-family: var(--font-heading); font-weight: 600; font-size: 1.3rem; line-height: 1.25; }
.video-slide-location { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.85); }
.video-slide.is-prev .video-slide-body strong, .video-slide.is-next .video-slide-body strong { font-size: 1.05rem; }

.video-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.video-arrow:hover { background: var(--brand); color: #fff; transform: translateY(-50%) scale(1.06); }
.video-prev { left: clamp(0px, 2%, 30px); }
.video-next { right: clamp(0px, 2%, 30px); }

.video-dots { position: relative; z-index: 1; display: flex; justify-content: center; gap: 8px; margin: 22px 0 40px; }
.video-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--border); transition: width 0.25s ease, background 0.25s ease; }
.video-dots button.active { width: 26px; border-radius: 999px; background: var(--brand); }

.video-more-btn { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .video-carousel { height: 380px; }
  .video-slide { width: min(620px, 74vw); height: 340px; }
  .video-slide.is-prev { transform: translateX(calc(-50% - 300px)) scale(0.8); }
  .video-slide.is-next { transform: translateX(calc(-50% + 300px)) scale(0.8); }
}
@media (max-width: 700px) {
  .video-stories-section { padding: 64px 0 60px; }
  .video-section-heading { margin-bottom: 24px; }
  .video-carousel { height: 260px; }
  .video-slide { width: 100%; height: 240px; border-width: 4px; }
  .video-slide.is-prev, .video-slide.is-next { opacity: 0; pointer-events: none; }
  .video-slide-body strong { font-size: 1.05rem; }
  .video-arrow { width: 40px; height: 40px; }
  .video-prev { left: 4px; }
  .video-next { right: 4px; }
}

.search-card label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
@media (max-width: 900px) {
  .search-card form { grid-template-columns: 1fr 1fr; }
}

/* ---------- Form controls ---------- */
.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.95rem;
  width: 100%;
  background: #fff;
}
.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-light);
}
.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  display: block;
}

/* ---------- Story-style category nav ---------- */
.story-nav-outer { position: relative; }
.story-nav-wrap {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 36px, #000 calc(100% - 36px), transparent);
  mask-image: linear-gradient(90deg, transparent, #000 36px, #000 calc(100% - 36px), transparent);
}
.story-nav-wrap:active { cursor: grabbing; }
.story-nav-wrap.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.story-nav-wrap::-webkit-scrollbar { display: none; }
.story-nav {
  display: flex;
  gap: 22px;
  width: max-content;
  padding-inline: 36px;
}
.story-item { text-align: center; width: 82px; flex: none; scroll-snap-align: start; }
.story-ring {
  width: 70px; height: 70px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent), var(--gold), var(--brand));
  margin: 0 auto 9px;
  box-shadow: 0 4px 14px rgba(23, 32, 58, 0.1);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
}
.story-item:hover .story-ring { transform: scale(1.1); box-shadow: 0 8px 22px rgba(244, 101, 58, 0.3); }
.story-ring img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
}
.story-item span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-nav-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.story-nav-arrow:hover { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(13, 92, 82, 0.3); transform: translateY(-50%) scale(1.08); }
.story-nav-prev { left: -6px; }
.story-nav-next { right: -6px; }
@media (max-width: 700px) {
  .story-nav-arrow { display: none; }
  .story-nav { padding-inline: 18px; }
}

/* ---------- Category pills (destinations/packages) ---------- */
.pill-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.pill {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}
.pill.active, .pill:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- Horizontally scrolling card row ---------- */
.scroll-row-wrap {
  position: relative;
  margin: 0 -4px;
}
.scroll-row-wrap::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 12px;
  width: 64px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
}
.scroll-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 4px 16px;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-item {
  flex: 0 0 clamp(260px, 26vw, 394px);
  scroll-snap-align: start;
}
@media (max-width: 560px) { .scroll-item { flex-basis: 78vw; } }

.scroll-nav-btns { display: flex; gap: 8px; }
.scroll-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--brand);
  box-shadow: 0 6px 16px rgba(11, 95, 107, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.scroll-nav-btn:hover { background: var(--brand-dark); transform: translateY(-2px); }
@media (max-width: 700px) { .scroll-nav-btns { display: none; } }

/* Segmented pill toggle (All / Domestic / International) */
.segment-toggle {
  position: relative;
  display: inline-flex;
  background: linear-gradient(180deg, #eef6f6, #e2eeee);
  border: 1px solid rgba(11, 95, 107, 0.14);
  border-radius: 999px;
  padding: 5px;
  box-shadow: inset 0 1px 3px rgba(11, 95, 107, 0.08);
}
.segment-slider {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: 60px;
  border-radius: 999px;
  background: linear-gradient(160deg, #14a3b5, var(--brand) 55%, var(--brand-dark));
  box-shadow:
    0 6px 18px rgba(11, 95, 107, 0.5),
    0 0 0 8px rgba(20, 163, 181, 0.16),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: left 0.4s cubic-bezier(.34, 1.56, .64, 1), width 0.4s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 1;
}
.segment-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}
.segment-btn.active { color: #fff; }
.segment-btn:not(.active):hover { color: var(--brand); transform: translateY(-1px); }
.segment-btn:active { transform: scale(0.96); }
@media (max-width: 900px) { .segment-toggle { order: 3; width: 100%; justify-content: center; } }

/* ---------- Trending destinations showcase ---------- */
.destinations-showcase {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(232, 249, 248, 0.72), rgba(255, 255, 255, 0) 38%),
    #fff;
  padding-top: 82px;
  padding-bottom: 54px;
}
.destinations-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(ellipse at 105% -10%, transparent 0 19px, rgba(13,92,82,.09) 20px 21px, transparent 22px 37px);
  -webkit-mask-image: linear-gradient(90deg, transparent 48%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 48%, #000 100%);
}
.destinations-showcase > .container-xxl { position: relative; z-index: 1; }
.dest-section-head {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto auto;
  align-items: center;
  gap: 34px;
}
.dest-section-head .section-title {
  margin: 2px 0 5px;
  font-size: clamp(2.25rem, 3.3vw, 4rem);
  font-weight: 700;
  letter-spacing: 0;
}
.text-accent-brand { color: var(--brand); }
.dest-section-sub {
  margin: 0;
  color: #75819b;
  font-size: clamp(.92rem, 1.15vw, 1.08rem);
}
.destinations-showcase .eyebrow-line {
  letter-spacing: .24em;
  color: #168d8a;
}
.destinations-showcase .eyebrow-line::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 99px;
  background: var(--brand);
}
.destinations-showcase .segment-toggle {
  background: rgba(255,255,255,.88);
  border-color: rgba(13,92,82,.12);
  box-shadow: 0 14px 34px rgba(20, 65, 76, .09);
  backdrop-filter: blur(12px);
}
.destinations-showcase .segment-slider {
  background: #0f8b8d;
  box-shadow: 0 7px 18px rgba(15,139,141,.25), 0 0 0 3px rgba(15,139,141,.08);
}
.destinations-showcase .scroll-nav-btn {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(13,92,82,.08);
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(20,65,76,.10);
}
.destinations-showcase .scroll-nav-btn:hover { color: #fff; background: var(--brand); }
.destinations-showcase .scroll-row-wrap { margin-inline: -8px; }
.destinations-showcase .scroll-row-wrap::after { display: none; }
.destinations-showcase .scroll-row {
  gap: 22px;
  padding: 8px 8px 24px;
  scroll-padding-inline: 8px;
}
.destinations-showcase .scroll-item { flex-basis: clamp(270px, 19vw, 370px); }
.destinations-showcase .dest-card {
  aspect-ratio: 4 / 5.15;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 18px 38px rgba(14, 53, 65, .14);
}
.destinations-showcase .dest-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 48px rgba(14,53,65,.2);
}
.destinations-showcase .dest-card-scrim {
  background: linear-gradient(to top, rgba(2,30,35,.98) 0%, rgba(3,39,44,.77) 30%, rgba(4,35,39,.08) 70%, transparent 100%);
}
.destinations-showcase .dest-card-overlay { padding: 18px 20px 20px; }
.destinations-showcase .dest-card-overlay h3 {
  font-size: clamp(1.55rem, 1.9vw, 2.15rem);
  letter-spacing: 0;
}
.destinations-showcase .dest-card-desc { min-height: 3.1em; }
.destinations-showcase .dest-card-wishlist {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.88);
  background: rgba(5,35,39,.24);
}
.destinations-showcase .dest-card-goto {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.92);
  background: rgba(11,113,105,.82);
}
.dest-flight-doodle {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 21%;
  width: 130px;
  height: 100px;
  color: #1ca2b2;
  pointer-events: none;
  transform: rotate(-4deg);
}
.dest-flight-svg { position: absolute; inset: 0; width: 92px; height: 92px; overflow: visible; }
.dest-flight-svg path { fill: none; stroke: currentColor; stroke-width: 1.4; stroke-dasharray: 4 5; }
.dest-flight-plane { position: absolute; top: -5px; right: 24px; font-size: 1.45rem; transform: rotate(42deg); }
.dest-flight-script { position: absolute; right: -3px; bottom: -3px; font: 700 1.45rem/1 var(--font-script); text-align: center; }
.dest-section-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 26px;
  margin-top: 4px;
}
.dest-scroll-progress { display: flex; align-items: center; gap: 8px; }
.dest-scroll-progress span {
  display: block;
  width: 42px;
  height: 4px;
  border-radius: 99px;
  background: #d8e5e7;
  transition: width .35s ease, background .35s ease;
}
.dest-scroll-progress span.active { width: 74px; background: #0f8b8d; }
.dest-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #a1afc1;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.dest-tagline::after { content: ""; width: 36px; height: 2px; background: #cbd9dc; }
@media (max-width: 1250px) {
  .dest-section-head { grid-template-columns: 1fr auto; }
  .dest-section-head > .segment-toggle { grid-column: 1 / -1; grid-row: 2; justify-self: start; }
  .dest-flight-doodle { right: 7%; }
}
@media (max-width: 700px) {
  .destinations-showcase { padding-top: 58px; padding-bottom: 40px; }
  .dest-section-head { display: flex; align-items: flex-start; gap: 22px; }
  .dest-section-head > .segment-toggle { order: 2; width: 100%; overflow-x: auto; justify-content: flex-start; }
  .dest-section-head > .d-flex { order: 3; width: 100%; }
  .dest-section-head .btn-pill-dark { width: 100%; justify-content: center; }
  .destinations-showcase .segment-btn { flex: 1 0 auto; padding-inline: 16px; font-size: .88rem; }
  .destinations-showcase .scroll-item { flex-basis: min(84vw, 340px); }
  .dest-flight-doodle, .dest-tagline { display: none; }
  .dest-section-foot { justify-content: center; margin-top: 0; }
  .dest-scroll-progress span { width: 28px; }
  .dest-scroll-progress span.active { width: 54px; }
}

.dest-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.dest-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,10,14,.92) 0%, rgba(4,10,14,.55) 38%, rgba(4,10,14,.05) 65%, transparent 100%);
}
.dest-card .badge-tag {
  position: absolute;
  z-index: 2;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.badge-tag.dest-card-flag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
}
.dest-card .dest-card-flag img {
  position: static;
  width: 20px;
  height: 15px;
  flex: 0 0 20px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(7,52,48,.14);
  transform: none;
}
.dest-card-overlay {
  position: absolute;
  z-index: 2;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px 18px;
}
.dest-card-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.dest-card-category i { color: var(--accent); font-size: 0.8rem; }
.dest-card-overlay h3 {
  color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.dest-card-desc {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-card-overlay hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin: 0 0 12px;
}
.dest-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-right: 48px;
  font-size: 0.95rem;
  font-weight: 500;
}
.dest-card-meta-row > span:first-child { color: rgba(255,255,255,0.8); }
.dest-card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}
.dest-card-meta-item i { color: var(--gold); font-size: 0.82rem; }
.dest-card-meta-item:last-child i { color: rgba(255, 255, 255, 0.6); }
.dest-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lime);
}
.dest-card-price small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.dest-card .badge-best {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: #fff;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(23, 32, 58, 0.18);
}
.dest-card .badge-best i { color: var(--brand); }
.dest-card .badge-best .bi-star-fill { color: var(--gold); }

.dest-card-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(23, 32, 58, 0.35);
  backdrop-filter: blur(3px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.dest-card-wishlist:hover { transform: scale(1.08); background: rgba(23, 32, 58, 0.55); }
.dest-card-wishlist.is-saved { background: #fff; color: var(--accent); }

.dest-card-goto {
  position: absolute;
  z-index: 2;
  right: 16px; bottom: 16px;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 18px rgba(13, 92, 82, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}
.dest-card:hover .dest-card-goto { background: var(--accent); transform: translateX(3px); }
.discount-chip {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 4px;
}

/* ---------- Featured package showcase ---------- */
.packages-showcase {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f9faf8 0%, #eef3f1 100%);
  padding-top: 76px;
  padding-bottom: 58px;
}
.packages-showcase::before,
.packages-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 16px;
  opacity: .38;
  pointer-events: none;
  background: radial-gradient(18px 8px at 18px 0, transparent 17px, #fff 18px) 0 0 / 36px 16px repeat-x;
}
.packages-showcase::before { top: 0; transform: rotate(180deg); }
.packages-showcase::after { bottom: 0; }
.packages-showcase > .container-xxl { position: relative; z-index: 1; }
.package-section-head {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) auto auto;
  align-items: center;
  gap: 34px;
}
.package-section-head .section-title {
  margin: 3px 0 5px;
  font-size: clamp(2.1rem, 3.1vw, 3.8rem);
  letter-spacing: 0;
}
.packages-showcase .eyebrow-line { color: #dc6d31; letter-spacing: .18em; }
.packages-showcase .eyebrow-line::before {
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 99px;
  background: #f1884e;
}
.package-section-sub { margin: 0; color: #8a94a7; font-size: clamp(.9rem, 1.1vw, 1.08rem); }
.packages-showcase .segment-toggle {
  background: rgba(255,255,255,.9);
  border-color: rgba(13,92,82,.1);
  box-shadow: 0 13px 34px rgba(33,60,68,.1);
}
.packages-showcase .segment-slider { background: var(--brand); box-shadow: 0 7px 18px rgba(13,92,82,.24), 0 0 0 3px rgba(13,92,82,.07); }
.packages-showcase .scroll-nav-btn { background: #fff; color: var(--brand); border: 1px solid rgba(13,92,82,.08); box-shadow: 0 10px 22px rgba(25,56,65,.1); }
.packages-showcase .scroll-nav-btn:hover { color: #fff; background: var(--brand); }
.packages-showcase .scroll-row-wrap { margin-inline: -8px; }
.packages-showcase .scroll-row-wrap::after { display: none; }
.packages-showcase .scroll-row { gap: 22px; padding: 8px 8px 24px; }
.packages-showcase .scroll-item { flex-basis: clamp(285px, 19vw, 370px); }
.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(15,67,68,.08);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(23,48,57,.12);
  transition: transform .28s ease, box-shadow .28s ease;
}
.package-card:hover { transform: translateY(-7px); box-shadow: 0 24px 44px rgba(23,48,57,.18); }
.package-card-media { position: relative; display: block; flex: 0 0 clamp(200px, 18vw, 235px); overflow: hidden; }
.package-card-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.package-card:hover .package-card-media > img { transform: scale(1.07); }
.package-card-place {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 78px);
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #173839;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 5px 14px rgba(5,36,40,.12);
}
.package-card-place i { color: var(--brand); }
.package-card-wishlist { top: 14px; right: 14px; width: 42px; height: 42px; border: 2px solid rgba(255,255,255,.9); }
.package-card-category {
  position: absolute;
  left: 16px;
  bottom: 0;
  padding: 6px 13px;
  border-radius: 999px 999px 0 0;
  background: rgba(7,67,62,.92);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.package-card-body { display: flex; flex: 1; flex-direction: column; padding: 20px 20px 22px; }
.package-card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.6em;
  margin-bottom: 8px;
  color: #102b30;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.18;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.package-card-desc {
  display: -webkit-box;
  overflow: hidden;
  color: #667488;
  font-size: .82rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.package-card-price { display: block; margin-top: 14px; color: var(--brand); font-family: var(--font-heading); font-size: 1.12rem; font-weight: 750; line-height: 1.2; }
.package-card-price small { display: block; margin-top: 3px; color: #8793a2; font-family: var(--font-body); font-size: .68rem; font-weight: 600; }
.package-card-footer { display: flex; align-items: center; gap: 9px; min-height: 46px; margin-top: 14px; padding-top: 14px; border-top: 1px solid #edf0ef; }
.package-card-meta { display: inline-flex; align-items: center; gap: 5px; color: #5f6d79; font-size: .74rem; font-weight: 600; white-space: nowrap; }
.package-card-meta i { color: #f1883f; }
.package-card-meta:nth-of-type(2) i { color: var(--brand); }
.package-card-divider { width: 1px; height: 17px; background: #dce2e1; }
.package-card-goto {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 7px 15px rgba(13,92,82,.25);
  transition: transform .2s ease, background .2s ease;
}
.package-card:hover .package-card-goto { transform: translateX(3px); background: var(--accent); }
.package-scroll-progress { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 4px; }
.package-scroll-progress span { width: 38px; height: 4px; border-radius: 99px; background: #ccd9d8; transition: width .35s ease, background .35s ease; }
.package-scroll-progress span.active { width: 70px; background: var(--brand); }
.package-flight-doodle { position: absolute; z-index: 2; top: 13px; right: 21%; width: 145px; height: 135px; color: var(--brand); pointer-events: none; }
.package-flight-doodle span { position: absolute; left: 0; top: 16px; font: 700 1.25rem/1 var(--font-script); transform: rotate(-7deg); }
.package-flight-doodle svg { position: absolute; right: 0; top: 0; width: 92px; height: 120px; overflow: visible; }
.package-flight-doodle path { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-dasharray: 5 6; }
.package-flight-doodle i { position: absolute; right: -3px; top: 0; font-size: 1.45rem; transform: rotate(43deg); }
@media (max-width: 1250px) {
  .package-section-head { grid-template-columns: 1fr auto; }
  .package-section-head > .segment-toggle { grid-column: 1 / -1; grid-row: 2; justify-self: start; }
  .package-flight-doodle { display: none; }
}
@media (max-width: 700px) {
  .packages-showcase { padding-top: 56px; padding-bottom: 46px; }
  .package-section-head { display: flex; align-items: flex-start; gap: 22px; }
  .package-section-head > .segment-toggle { order: 2; width: 100%; justify-content: flex-start; overflow-x: auto; }
  .package-section-head > .d-flex { order: 3; width: 100%; }
  .package-section-head .btn-pill-dark { width: 100%; justify-content: center; }
  .packages-showcase .segment-btn { flex: 1 0 auto; padding-inline: 15px; font-size: .86rem; }
  .packages-showcase .scroll-item { flex-basis: min(84vw, 350px); }
  .package-card { min-height: 480px; }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}
.testimonial-card .stars { color: #ffb100; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p.msg { color: var(--ink); font-size: 0.98rem; margin-bottom: 18px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand-light); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading);
}
.testimonial-card .author strong { display: block; font-size: 0.92rem; }
.testimonial-card .author span { color: var(--muted); font-size: 0.8rem; }

/* ---------- Testimonial marquee (two rows, opposite directions) ---------- */
.marquee-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-row { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
}
.marquee-track-right { animation: marqueeRight 46s linear infinite; }
.marquee-track-left { animation: marqueeLeft 46s linear infinite; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-card {
  flex: 0 0 340px;
  cursor: default;
}
@media (max-width: 560px) { .marquee-card { flex-basis: 270px; } }

/* ---------- Blog cards ---------- */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card img { height: 190px; width: 100%; object-fit: cover; }
.blog-card .blog-body { padding: 20px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card p { color: var(--muted); font-size: 0.9rem; }
.blog-card .read-more { color: var(--accent); font-weight: 700; font-size: 0.85rem; }

/* ---------- CTA / Newsletter ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; }

.newsletter-form { display: flex; flex-direction: column; gap: 10px; max-width: 340px; width: 100%; }
.newsletter-form .btn { width: 100%; }
.newsletter-form input {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 12px 18px;
}
.newsletter-form button {
  border-radius: 999px;
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--ink) url('../img/photos/ftr-light-bg.png') no-repeat bottom center / cover;
  background-blend-mode: overlay;
  color: rgba(255,255,255,0.75);
  padding: 0 0 0;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--lime), var(--brand));
}

/* Contact strip band across the top of the footer */
.footer-contact-strip {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
}
.contact-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  transition: transform 0.2s ease;
}
.contact-tile:hover { transform: translateX(4px); color: #fff; }
.contact-tile-icon {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--lime);
  transition: background 0.2s ease;
}
.contact-tile:hover .contact-tile-icon { background: var(--accent); color: #fff; }
.contact-tile strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.contact-tile span span { font-size: 0.85rem; color: rgba(255,255,255,0.62); }

.site-footer > .container-xxl { padding-top: 64px; }
.site-footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 3px;
  border-radius: 3px;
  background: var(--accent);
}
.site-footer a.footer-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.site-footer a.footer-link::before {
  content: "\F135";
  font-family: "bootstrap-icons";
  font-size: 0.7rem;
  color: var(--lime);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.site-footer a.footer-link:hover { color: #fff; gap: 10px; }
.site-footer a.footer-link:hover::before { opacity: 1; }
.site-footer .brand-mark { background: linear-gradient(135deg, var(--accent), var(--brand)); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { transform: translateY(-3px); }
.social-row a.social-fb:hover { background: #1877f2; }
.social-row a.social-ig:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.social-row a.social-yt:hover { background: #ff0000; }
.social-row a.social-li:hover { background: #0a66c2; }

.newsletter-input-wrap { position: relative; flex: 1; min-width: 0; }
.newsletter-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.9rem;
  pointer-events: none;
}
.newsletter-input-wrap input[type="email"] { padding-left: 38px; width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 22px 0 28px;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.back-to-top {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.back-to-top:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

/* Big faded brand wordmark bleeding off the bottom edge */
.footer-watermark {
  position: relative;
  height: clamp(70px, 11vw, 160px);
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.footer-watermark span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.045);
}

/* ---------- Page header (interior pages) ---------- */
.page-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
  padding: 148px 0 40px;
}
@media (max-width: 700px) {
  .page-header { padding-top: 112px; }
}
.page-header::before, .page-header::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
}
.page-header::before { top: -30%; right: 6%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,176,108,.55), transparent 70%); }
.page-header::after { bottom: -50%; left: 18%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(20,163,181,.55), transparent 70%); }
.page-header > .container-xxl { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 8px; text-shadow: 0 0 28px rgba(255,176,108,.3); }
.breadcrumb-row { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.breadcrumb-row a { color: rgba(255,255,255,0.9); }
.breadcrumb-row a:hover { text-decoration: underline; }

/* ---------- Detail pages ---------- */
.destination-detail-hero { padding: 0; background: #f4f1ea; }
.destination-detail-frame { position: relative; min-height: 520px; overflow: hidden; background: #153b3d; box-shadow: 0 24px 60px rgba(23,48,57,.18); }
.destination-detail-frame > img, .destination-detail-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.destination-detail-frame > img { object-fit: cover; object-position: center 45%; }
.destination-detail-shade { background: linear-gradient(90deg, rgba(5,35,38,.75) 0%, rgba(5,35,38,.28) 42%, rgba(5,35,38,.02) 76%), linear-gradient(0deg, rgba(5,35,38,.48), transparent 48%); }
.destination-detail-copy { position: absolute; z-index: 1; left: clamp(28px, 5.5vw, 82px); bottom: clamp(32px, 5vw, 60px); width: min(560px, calc(100% - 56px)); color: #fff; }
.destination-detail-copy .breadcrumb-row { display: flex; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,.9); font-size: .68rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.destination-detail-copy .breadcrumb-row i { margin-right: 5px; }
.destination-detail-eyebrow { display: none; }
.destination-detail-copy h1 { max-width: 500px; margin: 12px 0 20px; color: #fff; font-size: clamp(3.5rem, 6vw, 6.3rem); line-height: 1; letter-spacing: -.04em; }
.destination-detail-copy h1 span, .destination-detail-copy h1 strong { display: block; }
.destination-detail-copy h1 strong { color: #f36f2d; font-weight: inherit; }
.destination-detail-copy p { max-width: 570px; margin: 0; color: rgba(255,255,255,.82); font-size: 1.02rem; line-height: 1.65; }
.destination-detail-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.destination-detail-facts span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.1); color: rgba(255,255,255,.92); font-size: .78rem; font-weight: 650; backdrop-filter: blur(10px); }
.destination-detail-facts i { color: #ffc17f; }
.destination-detail-stamp { position: absolute; z-index: 1; right: clamp(24px, 5vw, 74px); top: 120px; color: rgba(255,255,255,.82); font: 700 1.2rem/1.05 var(--font-script); text-align: right; transform: rotate(7deg); }
.destination-detail-stamp strong { color: #ffc17f; font-size: 1.55rem; }
.destination-detail-play { position: absolute; z-index: 2; right: 6%; bottom: 34px; display: flex; align-items: center; gap: 9px; color: #fff; font-size: .75rem; font-weight: 750; }
.destination-detail-play i { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; background: #fff; color: var(--brand); font-size: 1.25rem; }
.destination-detail-section { padding-top: 54px; background: #f4f1ea; }
.destination-detail-section > .container-xxl { max-width: 1400px; }
.destination-detail-intro { display: grid; grid-template-columns: minmax(280px, 620px) minmax(260px, 380px) 300px; gap: clamp(24px, 3vw, 54px); align-items: start; }
.destination-detail-story { max-width: 700px; }
.destination-detail-story .eyebrow-line, .destination-packages-head .eyebrow-line { color: #d66f35; letter-spacing: .18em; }
.destination-detail-story h2 { margin: 12px 0 15px; color: #143d3d; font-size: clamp(2.25rem, 3.2vw, 3.6rem); line-height: .98; letter-spacing: -.02em; }
.destination-detail-story h2 span { color: #e17b3b; }
.destination-detail-story p { max-width: 640px; margin: 0; color: #687786; font-size: .82rem; line-height: 1.7; }
.destination-detail-services { display: flex; gap: clamp(17px, 2vw, 34px); margin-top: 20px; }
.destination-detail-services span { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 54px; color: #163d4a; text-align: center; }
.destination-detail-services i { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: #fff0e8; color: #f26f32; font-size: 1.1rem; }
.destination-detail-services strong { font-size: .66rem; line-height: 1.2; }
.destination-detail-collage { position: relative; min-height: 380px; }
.collage-photo { position: absolute; object-fit: cover; border: 7px solid #fff; box-shadow: 0 12px 22px rgba(23,48,57,.16); }
.collage-photo-main { top: 0; left: 85px; width: 190px; height: 225px; transform: rotate(-6deg); z-index: 2; }
.collage-photo-small { top: 30px; right: 0; width: 155px; height: 190px; transform: rotate(7deg); z-index: 3; }
.collage-photo-third { bottom: 0; right: 60px; width: 165px; height: 150px; transform: rotate(-5deg); z-index: 1; }
.collage-note { position: absolute; left: 0; bottom: 40px; color: #214b4e; font: 700 1rem/1.05 var(--font-script); transform: rotate(-8deg); z-index: 4; }
.collage-note i { display: block; margin: 6px 0 0 30px; font-family: var(--font-body); font-size: 1.3rem; }
.collage-seal { position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 76px; height: 76px; border: 1px dashed #145d5b; border-radius: 50%; color: #145d5b; font-size: .48rem; font-weight: 800; letter-spacing: .14em; text-align: center; transform: rotate(-13deg); z-index: 4; }
.collage-seal strong { font-size: .55rem; }
.destination-detail-planner { position: sticky; top: 24px; padding: 21px 23px; border: 1px solid rgba(13,92,82,.12); border-radius: 10px; background: #fff; box-shadow: 0 18px 40px rgba(23,48,57,.1); }
.planner-kicker { display: flex; align-items: center; gap: 7px; color: #e07838; font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.planner-kicker i { font-size: 1rem; }
.destination-detail-planner h3 { margin: 10px 0 12px; color: #143d3d; font-size: 1.4rem; }
.planner-line { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid #e8ece9; color: #85909d; font-size: .78rem; }
.planner-line strong { color: #173839; text-align: right; }
.destination-detail-planner .btn { width: 100%; justify-content: center; margin-top: 16px; }
.planner-call { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 11px; color: #527072; font-size: .72rem; font-weight: 700; }
.planner-call i { color: #e07838; }
.destination-packages-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin: 48px 0 20px; }
.destination-packages-head h2 { margin: 12px 0 0; color: #143d3d; font-size: clamp(2rem, 3.2vw, 3.3rem); line-height: 1; }
.destination-packages-head > a { padding-bottom: 5px; color: #173f45; font-size: .75rem; font-weight: 750; }
.destination-package-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 300px)); justify-content: start; gap: 16px; }
.destination-package-grid .package-card { min-height: 0; }
.destination-package-grid .package-card-media { flex-basis: 155px; }
.destination-package-grid .package-card-body { padding: 13px 15px 15px; }
.destination-package-grid .package-card-title { min-height: 2.35em; margin-bottom: 5px; font-size: 1.05rem; }
.destination-package-grid .package-card-desc { font-size: .7rem; line-height: 1.35; -webkit-line-clamp: 2; }
.destination-package-grid .package-card-price { margin-top: 9px; font-size: 1.05rem; }
.destination-package-grid .package-card-footer { margin-top: 10px; padding-top: 9px; }
.destination-empty-state { margin-top: 50px; }
@media (max-width: 800px) {
  .destination-detail-hero { padding-top: 12px; }
  .destination-detail-frame { min-height: 520px; border-radius: 8px; }
  .destination-detail-copy { left: 22px; bottom: 28px; width: calc(100% - 44px); }
  .destination-detail-copy .breadcrumb-row { margin-bottom: 30px; font-size: .68rem; }
  .destination-detail-copy h1 { margin-top: 10px; font-size: clamp(2.8rem, 13vw, 4rem); }
  .destination-detail-copy p { font-size: .88rem; }
  .destination-detail-facts { gap: 6px; margin-top: 18px; }
  .destination-detail-facts span { padding: 7px 9px; font-size: .66rem; }
  .destination-detail-stamp { display: none; }
  .destination-detail-section { padding-top: 58px; }
  .destination-detail-intro { grid-template-columns: 1fr; gap: 38px; }
  .destination-detail-story h2 { font-size: 3rem; }
  .destination-detail-services { justify-content: space-between; gap: 8px; }
  .destination-detail-services span { min-width: 0; flex: 1; }
  .destination-detail-services strong { font-size: .59rem; }
  .destination-detail-collage { min-height: 270px; max-width: 330px; margin: 0 auto; width: 100%; }
  .collage-photo { width: 155px; height: 185px; }
  .collage-photo-small { right: 64px; }
  .collage-note { left: 0; font-size: .9rem; }
  .collage-seal { right: 0; }
  .destination-detail-planner { position: static; padding: 23px; }
  .destination-packages-head { align-items: start; flex-direction: column; margin-top: 70px; gap: 10px; }
  .destination-package-grid { grid-template-columns: 1fr; }
  .destination-package-grid .package-card-media { flex-basis: 180px; }
}
.detail-hero { position: relative; height: 360px; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.info-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.info-box .row-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.info-box .row-line:last-child { border-bottom: none; }
.itinerary-day {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.itinerary-day:last-child { border-bottom: none; }
.itinerary-day .day-num {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.85rem;
}

/* ---------- Package detail page (reuses destination-detail-* hero/planner components) ---------- */
/* Package titles run longer than destination names (e.g. "Andaman Port Blair Havelock
   Tour" vs "Kashmir"), so the shared h1 needs a smaller size + wider wrap or it grows to
   3 lines and, since the copy block is bottom-anchored, pushes its top line up behind
   the fixed header. */
.package-hero .destination-detail-copy { width: min(720px, calc(100% - 56px)); }
.package-hero .destination-detail-copy h1 { max-width: 100%; font-size: clamp(2.2rem, 3.6vw, 3.6rem); line-height: 1.05; }
.package-hero .destination-detail-copy p { max-width: 620px; }
.package-detail-crumb { font-size: 0.85rem; color: var(--muted); }
.package-detail-crumb a { color: var(--brand); font-weight: 600; }
.package-detail-layout { display: grid; grid-template-columns: minmax(280px, 1fr) 340px; gap: clamp(24px, 3vw, 54px); align-items: start; }
.package-detail-heading { margin: 0 0 14px; color: #143d3d; font-size: clamp(1.5rem, 2.2vw, 1.9rem); }
.package-detail-body h2.package-detail-heading:not(:first-child) { margin-top: 44px; }
.package-detail-text { color: var(--muted); line-height: 1.75; }
.package-inclusions { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.package-inclusions li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 0.95rem; }
.package-inclusion-icon {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-size: 0.8rem;
  margin-top: 1px;
}
/* Two stacked cards in this sidebar: sticky only works safely with a single
   card. With two, a sticky first card paints (as a positioned element) above
   its static sibling while that sibling's top portion scrolls underneath it â€”
   hiding part of the enquiry form behind the pinned price card. Simplest
   correct fix is to drop sticky entirely here and let both cards scroll normally. */
.package-detail-sidebar { display: grid; gap: 20px; align-items: start; }
.package-detail-sidebar .destination-detail-planner { position: static; }
.package-price-unit { margin: -8px 0 14px; color: var(--muted); font-size: 0.78rem; }
.package-enquire-box .form-label { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.package-enquire-box .mb-3:first-of-type { margin-top: 14px; }
@media (max-width: 900px) {
  .package-detail-layout { grid-template-columns: 1fr; }
  .package-detail-sidebar { max-width: 460px; }
}

/* ---------- Alerts ---------- */
.alert-shy {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.alert-shy.success { background: #e5f6ec; color: #1b6e3c; border: 1px solid #bfe6cc; }
.alert-shy.error { background: #fdeeee; color: #b3261e; border: 1px solid #f5c8c6; }

/* ---------- Misc ---------- */
.text-muted-shy { color: var(--muted); }
.badge-soft {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ---------- Explore Latest News (scrapbook style, matches "plan" section) ---------- */
.text-accent { color: var(--accent); }
.news-section { position: relative; overflow: hidden; }

.news-blob-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: 0.5; }
.news-blob-glow-a { top: -8%; left: -6%; width: 340px; height: 340px; background: radial-gradient(circle, rgba(13, 92, 82, 0.16), transparent 70%); }
.news-blob-glow-b { bottom: -12%; right: -6%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(244, 101, 58, 0.14), transparent 70%); }

.news-doodle-corner {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 6%, 100px);
  bottom: 34px;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.15;
  color: var(--ink);
  opacity: 0.55;
  text-align: right;
  white-space: nowrap;
  transform: rotate(4deg);
  pointer-events: none;
}
@media (max-width: 1300px) { .news-doodle-corner { display: none; } }

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.eyebrow-line::after { content: ""; width: 40px; height: 1px; background: var(--border); }
.eyebrow-line-light { color: #ffd19d; margin-bottom: 6px; }
.eyebrow-line-light::after { background: rgba(255, 255, 255, 0.4); }

.news-head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.news-head-text p { color: var(--muted); max-width: 460px; margin: 0; }
.news-head-cta { display: flex; align-items: center; gap: 22px; flex: none; }

.news-flight-doodle { position: relative; width: 150px; text-align: left; pointer-events: none; }
.news-flight-script {
  display: block;
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--brand);
  margin-bottom: 2px;
}
.news-flight-svg { width: 100%; height: 60px; overflow: visible; }
.news-flight-svg path { fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-dasharray: 4 6; opacity: 0.4; }
.news-flight-icon { position: absolute; right: -4px; bottom: 4px; color: var(--brand); font-size: 1.1rem; transform: rotate(20deg); }
@media (max-width: 700px) { .news-flight-doodle { display: none; } }

.btn-pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 26px rgba(13, 92, 82, 0.25);
}
.btn-pill-dark:hover { background: var(--brand-dark); transform: translateY(-2px); color: #fff; }

.news-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

/* Featured post */
.news-hero-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
}
.news-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-hero-card:hover img { transform: scale(1.04); }
.news-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 20, 33, 0.92) 0%, rgba(8, 20, 33, 0.45) 45%, rgba(8, 20, 33, 0.05) 75%);
}
.news-hero-category { position: absolute; top: 20px; left: 20px; z-index: 1; }
.news-date-plain {
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.news-hero-date-plain { position: absolute; top: 24px; right: 22px; z-index: 1; }
.news-hero-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 36px 30px;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}
.news-hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: #fff;
  line-height: 1.3;
}
.news-hero-excerpt {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.news-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 22px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.news-hero-card:hover .news-hero-cta { transform: translateY(-2px); }

/* 2x2 card grid */
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.news-card-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-thumb img { transform: scale(1.06); }
.news-card-category { position: absolute; top: 12px; left: 12px; z-index: 1; }
.news-card-thumb .news-date-plain { position: absolute; top: 15px; right: 13px; z-index: 1; font-size: 0.72rem; }
.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 18px;
}
.news-card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-excerpt {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: auto;
  padding-top: 4px;
  transition: gap 0.2s ease;
}
.news-card:hover .news-card-link { gap: 10px; }

/* badge-tag reused standalone (originally scoped to .dest-card) */
.badge-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
}

/* 4th tile: CTA to the full blog, styled as a photo tile matching the other cards */
.news-card-cta {
  position: relative;
  align-items: stretch;
  min-height: 220px;
}
.news-card-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card-cta:hover > img { transform: scale(1.06); }
.news-cta-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(7, 52, 48, 0.92), rgba(13, 92, 82, 0.8));
}
.news-card-cta-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 24px;
  color: #fff;
}
.news-card-cta-inner > i { font-size: 1.7rem; margin-bottom: 4px; color: #ffd19d; }
.news-card-cta-inner strong { font-family: var(--font-heading); font-weight: 600; font-size: 1.08rem; }
.news-card-cta-inner > span:not(.news-cta-btn) { font-size: 0.8rem; color: rgba(255, 255, 255, 0.78); margin-bottom: 8px; max-width: 200px; }
.news-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 11px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-card-cta:hover .news-cta-btn { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25); }

.news-tagline { position: relative; z-index: 1; margin-top: 60px; }

@media (max-width: 1100px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-hero-card { min-height: 320px; }
  .news-card-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .news-card-grid { grid-template-columns: repeat(2, 1fr); }
  .news-hero-body { padding: 24px 20px 22px; }
  .news-head-cta { width: 100%; justify-content: space-between; }
}
@media (max-width: 480px) {
  .news-card-grid { grid-template-columns: 1fr; }
}
/* ---------- Promo banner ---------- */
.promo-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(120deg, #ff6b35 0%, #ff8c42 45%, #ffb100 100%);
  padding: 44px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.28), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(255,255,255,0.18), transparent 40%);
}
.promo-banner .promo-text { position: relative; z-index: 1; max-width: 560px; }
.promo-banner .promo-tag {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.promo-banner h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 8px; }
.promo-banner p { color: rgba(255,255,255,0.92); margin: 0; }
.promo-banner .btn-accent { position: relative; z-index: 1; background: #14213d; box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.promo-banner .btn-accent:hover { background: #0b1226; }

.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 1200;
}

/* ---------- Road strip (decorative driving car band before footer) ---------- */
.road-strip {
  position: relative;
  min-height: clamp(120px, 16vw, 190px);
  overflow: hidden;
}
.road-strip-car {
  position: absolute;
  bottom: 0px;
  left: -25%;
  width: clamp(120px, 12vw, 200px);
  height: auto;
  pointer-events: none;
  animation: roadStripDrive 26s linear infinite;
  z-index: 10;
}
.road-strip-tree {
  position: absolute;
  right: clamp(0px, 2vw, 40px);
  bottom: 0;
  width: clamp(140px, 14vw, 240px);
  height: auto;
  pointer-events: none;
}
@keyframes roadStripDrive {
  0% { left: -25%; }
  100% { left: 110%; }
}
@media (max-width: 560px) {
  .road-strip { min-height: 110px; }
  .road-strip-car { width: clamp(90px, 24vw, 140px); }
  .road-strip-tree { width: clamp(100px, 26vw, 160px); }
}


/* ---------- "Travel Planned Around You" â€” light, scrapbook-style plan section ---------- */
.plan-section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 100px 0 90px;
}
.plan-section > .container-xxl { max-width: 1180px; }
@media (min-width: 1400px) { .plan-section > .container-xxl { max-width: 1180px; } }
.plan-dotmap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(13, 92, 82, 0.14) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(circle at 50% 38%, #000 0%, transparent 68%);
  mask-image: radial-gradient(circle at 50% 38%, #000 0%, transparent 68%);
}

.plan-side-photo {
  position: absolute;
  top: 7%;
  bottom: 7%;
  z-index: 1;
  width: clamp(160px, 13vw, 230px);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(23, 32, 58, 0.2);
  background: #fff;
}
.plan-side-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.plan-side-left { left: 0; border-radius: 12% 48% 42% 8% / 20% 55% 45% 80%; }
.plan-side-right { right: 0; border-radius: 48% 12% 8% 42% / 55% 20% 80% 45%; }
@media (max-width: 1500px) { .plan-side-photo { display: none; } }

.plan-doodle {
  position: absolute;
  z-index: 2;
  font-family: var(--font-script);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.plan-doodle-left { left: 18px; top: 46px; font-size: 1.6rem; transform: rotate(-4deg); }
.plan-doodle-right { right: 22px; bottom: 36px; font-size: 1.7rem; text-align: right; transform: rotate(3deg); }

.plan-flight-doodle {
  position: absolute;
  top: 6%;
  right: clamp(20px, 24%, 340px);
  z-index: 2;
  width: 200px;
  text-align: right;
  pointer-events: none;
}
.plan-doodle-top { position: static; display: block; margin-bottom: 4px; color: var(--brand-dark); font-size: 1.5rem; text-shadow: none; }
.plan-flight-svg { width: 100%; height: 80px; overflow: visible; }
.plan-flight-svg path { fill: none; stroke: var(--brand-dark); stroke-width: 1.6; stroke-dasharray: 5 7; opacity: 0.55; }
.plan-flight-plane { position: absolute; top: 84px; right: -4px; color: var(--accent); font-size: 1.25rem; transform: rotate(-12deg); }
@media (max-width: 1300px) { .plan-flight-doodle { right: 4%; } }
@media (max-width: 700px) { .plan-flight-doodle { display: none; } }

.plan-stamp {
  position: absolute;
  left: clamp(16px, 5%, 90px);
  bottom: 8%;
  z-index: 2;
  width: 112px; height: 112px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  border: 2px dashed rgba(23, 32, 58, 0.32);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  transform: rotate(-8deg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.45;
  pointer-events: none;
}
@media (max-width: 1300px) { .plan-stamp { display: none; } }

.plan-head { position: relative; z-index: 1; max-width: 640px; margin: 0 auto 56px; text-align: center; }
.eyebrow-dashed {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 20px;
}
.eyebrow-dashed i { display: block; width: 22px; height: 1px; background: var(--border); font-style: normal; }
.plan-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.plan-title em {
  display: inline-block;
  font-family: var(--font-script);
  font-style: normal;
  color: var(--brand);
  font-size: 1.25em;
  transform: translateY(4px) rotate(-2deg);
  position: relative;
}
.plan-head p { color: var(--muted); line-height: 1.7; margin: 0; }

.plan-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.plan-step {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 34px 26px 28px;
  box-shadow: 0 16px 36px rgba(23, 32, 58, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan-step:hover { transform: translateY(-6px); box-shadow: 0 24px 46px rgba(23, 32, 58, 0.14); }
.plan-step-num {
  position: absolute;
  top: 24px; right: 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
}
.plan-step-icon {
  position: relative;
  width: 66px; height: 66px;
  margin-bottom: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.plan-step-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.35;
}
.plan-step h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--ink); }
.plan-step p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 20px; }
.plan-step-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
}
.plan-step-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.2s ease;
}
.plan-step-link:hover .plan-step-arrow { transform: translateX(4px); }

.plan-step.tone-green { background: #eaf3ee; }
.tone-green .plan-step-num { color: var(--brand); }
.tone-green .plan-step-icon { background: var(--brand); }
.tone-green .plan-step-icon::after { background: var(--brand); }
.tone-green .plan-step-link { color: var(--brand); }
.tone-green .plan-step-arrow { background: rgba(13, 92, 82, 0.14); color: var(--brand); }

.plan-step.tone-orange { background: #fdf1e8; }
.tone-orange .plan-step-num { color: var(--accent); }
.tone-orange .plan-step-icon { background: var(--accent); }
.tone-orange .plan-step-icon::after { background: var(--accent); }
.tone-orange .plan-step-link { color: var(--accent-dark); }
.tone-orange .plan-step-arrow { background: rgba(244, 101, 58, 0.16); color: var(--accent-dark); }

.plan-step.tone-blue { background: #e9f0fc; }
.tone-blue .plan-step-num { color: #2f5fd1; }
.tone-blue .plan-step-icon { background: #2f5fd1; }
.tone-blue .plan-step-icon::after { background: #2f5fd1; }
.tone-blue .plan-step-link { color: #2f5fd1; }
.tone-blue .plan-step-arrow { background: rgba(47, 95, 209, 0.14); color: #2f5fd1; }

.plan-tagline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.plan-tagline span { width: 60px; height: 1px; background: var(--border); }

@media (max-width: 900px) {
  .plan-steps { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 560px) {
  .plan-section { padding: 64px 0 56px; }
  .plan-head { margin-bottom: 40px; }
}

/* ---------- Home-only launch mode ---------- */
body.home-only-mode .dest-card,
body.home-only-mode .news-card,
body.home-only-mode .news-hero-card {
  pointer-events: none;
  cursor: default;
}

/* ---------- Scroll-reveal entrance animations ---------- */
/* Uses `animation` (not `transition`) so it never fights the hover-lift
   transitions already defined on cards like .dest-card / .blog-card / .news-card. */
.reveal-fade { opacity: 0; }
.reveal-fade.in-view {
  animation: reveal-fade-in 0.6s ease forwards;
  animation-delay: var(--reveal-delay, 0s);
}
@keyframes reveal-fade-in { to { opacity: 1; } }

.reveal-up { opacity: 0; transform: translateY(28px); }
.reveal-up.in-view {
  animation: reveal-up-in 0.7s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
@keyframes reveal-up-in { to { opacity: 1; transform: translateY(0); } }

/* ---------- Scroll progress bar ---------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 1400;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--lime), var(--brand));
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  transition: width 0.1s linear;
}

/* ---------- Drifting sparkle particles (dark sections) ---------- */
.sparkle-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.sparkle-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.8);
  opacity: 0;
  animation-name: sparkle-twinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6) translateY(0); }
  50% { opacity: 0.85; transform: scale(1.3) translateY(-14px); }
}

/* Directional scroll-reveal variants (services section split layout) */
.reveal-left { opacity: 0; transform: translateX(-44px); }
.reveal-left.in-view {
  animation: reveal-left-in 0.75s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
@keyframes reveal-left-in { to { opacity: 1; transform: translateX(0); } }

.reveal-right { opacity: 0; transform: translateX(44px); }
.reveal-right.in-view {
  animation: reveal-right-in 0.75s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}
@keyframes reveal-right-in { to { opacity: 1; transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ---------- Offers page ---------- */
.offer-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.offer-card {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.offer-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.offer-card:hover img { transform: scale(1.06); }
.offer-card-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,10,14,.9) 0%, rgba(4,10,14,.4) 45%, transparent 100%); }
.offer-card-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 20px 22px; }
.offer-card-body h3 { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.offer-card-body p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0 0 10px; }
.offer-card-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-weight: 700; font-size: .85rem; }

.offer-detail-layout { display: grid; grid-template-columns: 340px 1fr; gap: 32px; align-items: start; }
.offer-detail-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 24px; }
.offer-detail-media img { width: 100%; height: 460px; object-fit: cover; display: block; }

.offer-detail-panel {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.offer-detail-panel .eyebrow-line { color: var(--accent-dark); margin-bottom: 10px; }
.offer-detail-panel .section-title { margin-bottom: 12px; }
.offer-detail-desc { color: var(--muted); font-size: 1rem; margin-bottom: 22px; }

.offer-detail-highlights { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.offer-detail-highlights li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--ink); }
.offer-detail-highlights i { color: var(--brand); margin-top: 3px; }

.offer-detail-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  margin-bottom: 26px;
}
.offer-detail-contact span { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 650; color: var(--brand-dark); }

.offer-detail-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: auto; }
.offer-detail-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--brand); }
.offer-detail-link:hover { color: var(--accent); }

@media (max-width: 900px) {
  .offer-detail-layout { grid-template-columns: 1fr; }
  .offer-detail-media { position: static; }
  .offer-detail-media img { height: 220px; }
  .offer-detail-panel { padding: 28px 24px; }
}

/* ---------- Homepage offer popups (side by side) ---------- */
.site-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2010;
  background: rgba(7, 20, 18, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.site-popup-backdrop.is-visible { display: flex; opacity: 1; }
.site-popup {
  position: relative;
  flex: 0 0 auto;
  width: min(300px, 100%);
  aspect-ratio: 4 / 5;
  max-height: 80vh;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b2b26;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  transform: scale(0.92) translateY(10px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.site-popup-backdrop.is-visible .site-popup { transform: scale(1) translateY(0); }
.site-popup.is-closed { display: none; }
.site-popup-link { display: block; width: 100%; height: 100%; line-height: 0; }
.site-popup-link img, .site-popup > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.site-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.site-popup-close:hover { background: rgba(0, 0, 0, 0.8); transform: scale(1.08); }

@media (max-width: 640px) {
  .site-popup-backdrop { gap: 12px; padding: 14px; align-content: center; }
  .site-popup { width: calc(50% - 6px); max-height: none; }
  .site-popup:only-child { width: min(320px, 100%); }
  .site-popup-close { width: 28px; height: 28px; top: 6px; right: 6px; font-size: .8rem; }
}

/* ---------- About page ---------- */
.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffe3bf;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.about-hero-badge i { color: var(--gold); }

.about-story-grid { display: grid; grid-template-columns: minmax(260px, 440px) 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.about-story-media { position: relative; }
.about-story-media img { width: 100%; height: clamp(320px, 34vw, 460px); object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-hover); }
.about-story-badge {
  position: absolute;
  left: -18px;
  bottom: -18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 18px 36px rgba(13, 92, 82, 0.35);
}
.about-story-badge strong { font-family: var(--font-heading); font-size: 1.9rem; line-height: 1; }
.about-story-badge span { font-size: 0.7rem; line-height: 1.3; opacity: 0.85; }

.about-stats-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.about-stat { display: flex; align-items: center; gap: 12px; flex: 1 1 150px; }
.about-stat-icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 1.05rem;
}
.about-stat strong { display: block; font-family: var(--font-heading); font-size: 1.25rem; color: var(--ink); line-height: 1.2; }
.about-stat > div > span { display: block; font-size: 0.78rem; color: var(--muted); }
.about-stat-icon i { font-size: 1.05rem; color: var(--brand); }

.about-offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-offer-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.about-offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent; }
.about-offer-card .icon-tile { margin-bottom: 18px; }

.about-journey-section { background: var(--bg); }
.about-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.about-timeline-item { position: relative; z-index: 1; }
.about-timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: 0 8px 18px rgba(244, 101, 58, 0.3);
  margin-bottom: 16px;
}
.about-timeline-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.about-timeline-item p { font-size: 0.88rem; line-height: 1.6; margin: 0; }

@media (max-width: 1100px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-offer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-timeline { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .about-timeline::before { display: none; }
}
@media (max-width: 560px) {
  .about-story-badge { left: 12px; bottom: -16px; padding: 12px 16px; }
  .about-story-badge strong { font-size: 1.5rem; }
  .about-offer-grid { grid-template-columns: 1fr; }
  .about-timeline { grid-template-columns: 1fr; }
}

/* ---------- Fleet (luxury cars & buses) page ---------- */
.fleet-trust-strip { background: var(--brand-dark); padding: 18px 0; position: relative; z-index: 2; }
.fleet-trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; }
.fleet-trust-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.01em; }
.fleet-trust-item i { color: var(--gold); font-size: 1.05rem; }

.fleet-section { position: relative; overflow: hidden; background: var(--bg); }
.fleet-glow { position: absolute; z-index: 0; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: 0.5; }
.fleet-glow-a { top: -8%; right: -6%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(255, 176, 108, 0.18), transparent 70%); }
.fleet-glow-b { bottom: -10%; left: -8%; width: 340px; height: 340px; background: radial-gradient(circle, rgba(13, 92, 82, 0.16), transparent 70%); }

.fleet-rows { position: relative; z-index: 1; display: flex; flex-direction: column; gap: clamp(56px, 8vw, 96px); }
.fleet-row { display: grid; grid-template-columns: minmax(320px, 1.35fr) minmax(280px, 1fr); gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.fleet-row-reverse .fleet-row-media { order: 2; }
.fleet-row-reverse .fleet-row-copy { order: 1; }
.fleet-row-media { position: relative; display: flex; padding-bottom: 18px; padding-left: 18px; min-height: 300px; }
.fleet-row-photo-main {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.5s ease;
}
.fleet-row-photo-sub {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: clamp(120px, 18vw, 170px);
  height: clamp(90px, 12vw, 120px);
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 16px 32px rgba(23, 32, 58, 0.22);
  transition: transform 0.4s ease;
}
.fleet-row-media:hover .fleet-row-photo-main { transform: scale(1.03); }
.fleet-row-media:hover .fleet-row-photo-sub { transform: translateY(-4px); }

.fleet-badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), #c9791f);
  color: #2a1a03;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 8px 16px 8px 14px;
  border-radius: 0 999px 999px 0;
  box-shadow: 0 10px 22px rgba(238, 162, 60, 0.4);
}
.fleet-badge i { font-size: 0.85rem; }

.fleet-price-tag {
  position: absolute;
  z-index: 3;
  right: 14px;
  top: 14px;
  background: rgba(7, 52, 48, 0.88);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.fleet-price-tag strong { color: var(--gold); font-size: 0.92rem; }

.fleet-category-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.fleet-row-copy h3 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 6px; position: relative; padding-bottom: 14px; }
.fleet-row-copy h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}
.fleet-card-tagline { color: var(--muted); font-size: 0.95rem; margin-bottom: 10px; }
.fleet-card-desc { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin: 14px 0 20px; }

.fleet-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.fleet-rating-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.fleet-rating-value { font-weight: 800; color: var(--ink); font-size: 0.9rem; }
.fleet-rating-count { color: var(--muted); font-size: 0.82rem; }

.fleet-card-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 6px; }
.fleet-call-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand-dark); font-size: 0.9rem; }
.fleet-call-link i { color: var(--accent); }
.fleet-call-link:hover { color: var(--accent); }

.fleet-specs-table {
  display: grid;
  gap: 2px;
  margin: 4px 0 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--border);
}
.fleet-specs-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 16px; background: #fff; font-size: 0.86rem; }
.fleet-specs-row span { color: var(--muted); }
.fleet-specs-row strong { color: var(--ink); text-align: right; }

.fleet-card-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.fleet-card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}
.fleet-card-specs i { color: var(--brand); }

.fleet-card-features { list-style: none; margin: 0 0 26px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; }
.fleet-card-features li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--ink); }
.fleet-card-features i { color: var(--accent); font-size: 0.9rem; }

@media (max-width: 900px) {
  .fleet-row { grid-template-columns: 1fr; gap: 24px; }
  .fleet-row-reverse .fleet-row-media { order: 1; }
  .fleet-row-reverse .fleet-row-copy { order: 2; }
  .fleet-card-features { grid-template-columns: 1fr; }
  .fleet-trust-row { justify-content: flex-start; gap: 12px 24px; }
  .fleet-trust-item { font-size: 0.8rem; }
}



/* ---------- Other Businesses ---------- */
.biz-page-header { padding: 128px 0 28px; }
@media (max-width: 700px) { .biz-page-header { padding-top: 100px; } }

.biz-section { background: var(--bg); }
.biz-stack { display: flex; flex-direction: column; gap: 32px; }

.biz-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  color: #fff;
}
.biz-banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 48px 48px 40px;
  position: relative;
  z-index: 1;
}
.biz-banner-grid-reverse { grid-template-columns: 1fr 1.15fr; }
.biz-banner-grid-reverse .biz-banner-copy { order: 1; }
.biz-banner-grid-reverse .biz-pg-card { order: 2; }

.biz-banner-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.32);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 14px;
}
.biz-banner-title { color: #fff; font-size: clamp(2rem, 3.6vw, 2.7rem); line-height: 1.08; margin-bottom: 10px; }
.biz-banner-title span { display: block; color: var(--gold); }
.biz-banner-tag { font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,.85); margin-bottom: 10px; }
.biz-banner-desc { color: rgba(255,255,255,.8); max-width: 440px; margin-bottom: 26px; }

.biz-feature-row { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-bottom: 30px; }
.biz-feature { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 650; color: rgba(255,255,255,.94); max-width: 150px; }
.biz-feature-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.3);
  font-size: 1rem;
  color: var(--gold);
}

.biz-banner-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-biz-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s ease, transform .2s ease;
}
.btn-biz-outline:hover { background: rgba(255,255,255,.14); color: #fff; transform: translateY(-2px); }
.btn-biz-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s ease, transform .2s ease;
}
.btn-biz-solid:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }

/* Courier banner — bespoke logistics image with a readable brand-colour overlay. */
.biz-banner-courier { background: var(--brand-dark); isolation: isolate; }
.biz-courier-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.biz-banner-courier::selection { background: var(--accent); color: #fff; }
.biz-banner-courier::before, .biz-banner-courier::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: -1;
}
.biz-banner-courier::before { background: linear-gradient(90deg, rgba(0,50,45,.98) 0%, rgba(0,59,53,.94) 36%, rgba(0,57,51,.54) 57%, rgba(0,40,37,.08) 100%); }
.biz-banner-courier::after { background: linear-gradient(0deg, rgba(0,40,37,.55), transparent 40%); }
.biz-banner-courier .biz-banner-grid { min-height: 570px; grid-template-columns: minmax(0, .92fr) minmax(300px, 1fr); }
.biz-banner-courier .biz-banner-copy { max-width: 540px; }
.biz-banner-courier .biz-banner-desc { font-size: 1rem; line-height: 1.55; }
.biz-banner-courier .biz-feature-row { gap: 12px; }
.biz-banner-courier .biz-feature {
  min-height: 102px;
  flex: 1 1 104px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 12px 8px;
  background: rgba(4, 70, 62, .56);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  backdrop-filter: blur(5px);
}
.biz-banner-courier .biz-feature-icon { background: transparent; border: 0; width: 28px; height: 28px; font-size: 1.55rem; }

.biz-banner-visual { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; min-height: 260px; padding-top: 4px; }
.biz-banner-script { display: block; font-family: var(--font-script); font-size: 1.15rem; color: rgba(255,255,255,.88); text-align: right; align-self: flex-end; margin-bottom: 10px; }
.biz-globe {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.18), rgba(255,255,255,.02) 60%);
  border: 1px dashed rgba(255,255,255,.35);
}
.biz-globe > i:first-child { font-size: 6.5rem; color: rgba(255,255,255,.92); }
.biz-globe .biz-plane { position: absolute; top: 6%; right: 4%; font-size: 2.4rem; color: var(--gold); transform: rotate(35deg); filter: drop-shadow(0 6px 10px rgba(0,0,0,.3)); }
.biz-globe .biz-box { position: absolute; bottom: 2%; left: -6%; font-size: 2.6rem; color: #fff; background: var(--accent); border-radius: 14px; padding: 10px; box-shadow: 0 10px 22px rgba(0,0,0,.3); }

.biz-info-bar { background: rgba(4,18,15,.35); border-top: 1px solid rgba(255,255,255,.14); position: relative; z-index: 1; }
.biz-info-bar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; padding: 18px 48px; }
.biz-info-bar-inner span { display: flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.92); }
.biz-info-bar-inner i { color: var(--gold); }

/* PG banner — brand accent gradient, same orange used for every CTA on the site */
.biz-banner-pg { background: linear-gradient(120deg, var(--brand-dark), var(--brand)); }
.biz-banner-pg::before, .biz-banner-pg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none;
}
.biz-banner-pg::before { top: -25%; left: 2%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(238,162,60,.6), transparent 70%); }
.biz-banner-pg::after { bottom: -35%; right: 6%; width: 260px; height: 260px; background: radial-gradient(circle, rgba(159,199,112,.4), transparent 70%); }

.biz-pg-title { font-family: var(--font-heading); }
.biz-pg-title span { letter-spacing: .06em; font-size: .68em; }
.biz-banner-script-top { align-self: flex-start; margin-bottom: 8px; }
.biz-banner-pg .biz-banner-script { align-self: flex-start; text-align: left; display: block; margin: 4px 0 22px; }

.btn-biz-solid-pg {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 999px;
  background: #fff; color: var(--brand-dark); font-weight: 750; font-size: .9rem; transition: transform .2s ease;
}
.btn-biz-solid-pg:hover { transform: translateY(-2px); color: var(--brand-dark); }

.biz-pg-card {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 16px;
  padding: 28px 26px;
  backdrop-filter: blur(6px);
}
.biz-pg-card-list { display: grid; gap: 14px; }
.biz-pg-card-list span { display: flex; align-items: center; gap: 10px; font-size: .88rem; font-weight: 650; color: #fff; }
.biz-pg-card-list i { color: var(--gold); font-size: 1rem; }

.biz-gallery-strip { background: rgba(4,18,15,.3); border-top: 1px solid rgba(255,255,255,.14); padding: 26px 48px; position: relative; z-index: 1; }
.biz-gallery-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.biz-gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  display: grid;
  place-items: center;
  gap: 6px;
  background: linear-gradient(150deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  font-weight: 650;
  text-align: center;
}
.biz-gallery-tile i { font-size: 1.4rem; color: var(--gold); }

@media (max-width: 991px) {
  .biz-banner-grid, .biz-banner-grid-reverse { grid-template-columns: 1fr; padding: 40px 28px 34px; }
  .biz-banner-grid-reverse .biz-banner-copy { order: 1; }
  .biz-banner-grid-reverse .biz-pg-card { order: 2; margin-top: 8px; }
  .biz-banner-visual { min-height: 200px; margin-top: 10px; }
  .biz-banner-courier .biz-banner-grid { min-height: 0; }
  .biz-banner-courier .biz-banner-visual { display: none; }
  .biz-banner-courier::before { background: linear-gradient(90deg, rgba(0,50,45,.94), rgba(0,59,53,.8)); }
  .biz-info-bar-inner { justify-content: flex-start; padding: 18px 28px; }
  .biz-gallery-strip { padding: 22px 28px; }
  .biz-gallery-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
  .biz-gallery-row { grid-template-columns: repeat(2, 1fr); }
}

/* Annapurna PG Deluxe — editorial accommodation showcase */
.biz-banner-pg {
  --pg-green: #003f38;
  --pg-ink: #073d37;
  --pg-gold: #f4b541;
  background: var(--pg-green);
  border-radius: 20px;
  isolation: isolate;
}
.biz-banner-pg::before, .biz-banner-pg::after { display: none; }
.biz-banner-pg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 47%;
  background: #003f38;
}
.biz-pg-hero-image {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  left: 31%;
  height: 485px;
  overflow: hidden;
  background: url('../img/annapurna-pg-deluxe-hero.png') right top / auto 800px no-repeat;
}
.biz-pg-hero-image::after {
  display: none;
}
.biz-banner-pg > .biz-banner-grid {
  min-height: 485px;
  padding: 48px 3.1% 116px;
  grid-template-columns: minmax(430px, .9fr) 1.1fr;
  align-items: start;
}
.biz-banner-pg > .biz-banner-grid::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #003d36 0%, rgba(0, 57, 50, .98) 31%, rgba(0, 57, 50, .68) 48%, rgba(0, 57, 50, .05) 72%);
}
.biz-banner-pg .biz-banner-copy { max-width: 710px; }
.biz-banner-pg .biz-banner-script-top {
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  font-style: italic;
  margin: 0 0 18px;
}
.biz-banner-pg .biz-pg-title { font-size: clamp(3rem, 5vw, 4.65rem); line-height: .84; margin-bottom: 12px; }
.biz-banner-pg .biz-pg-title span { font-size: .67em; color: var(--pg-gold); }
.biz-banner-pg .biz-banner-tag { font-size: clamp(1rem, 1.55vw, 1.36rem); letter-spacing: -.02em; margin-bottom: 9px; }
.biz-banner-pg .biz-banner-script { font-size: clamp(1.05rem, 1.55vw, 1.38rem); margin: 0 0 24px; font-style: italic; }
.biz-banner-pg .biz-feature-row { gap: 12px 18px; margin-bottom: 25px; }
.biz-banner-pg .biz-feature { max-width: 126px; gap: 8px; font-size: .74rem; line-height: 1.25; }
.biz-banner-pg .biz-feature-icon { width: 48px; height: 48px; color: var(--pg-gold); background: rgba(0, 52, 47, .72); border-color: rgba(250, 229, 176, .7); font-size: 1.25rem; }
.biz-banner-pg .btn-biz-solid-pg { background: linear-gradient(120deg, #ffd37b, #f3ad32); color: var(--pg-ink); padding: 15px 31px; box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.biz-pg-card { background: transparent; border: 0; backdrop-filter: none; }
.biz-gallery-strip { position: relative; z-index: 2; background: #f8f7f1; border: 0; padding: 16px 2.6% 20px; }
.biz-gallery-row { gap: 16px; }
.biz-gallery-tile { position: relative; overflow: hidden; display: block; aspect-ratio: auto; min-height: 220px; padding: 0; border: 0; border-radius: 13px; background: #fff; color: var(--pg-ink); box-shadow: 0 8px 22px rgba(0, 40, 34, .1); text-align: left; }
.biz-gallery-image { height: 116px; background-image: url('../img/annapurna-pg-deluxe-hero.png'); background-size: 810px auto; background-repeat: no-repeat; }
.biz-gallery-tile-1 .biz-gallery-image { background-position: 0 -220px; }
.biz-gallery-tile-2 .biz-gallery-image { background-position: 25% -220px; }
.biz-gallery-tile-3 .biz-gallery-image { background-position: 49% -220px; }
.biz-gallery-tile-4 .biz-gallery-image { background-position: 73% -220px; }
.biz-gallery-tile-5 .biz-gallery-image { background-position: 100% -220px; }
.biz-gallery-icon { position: absolute; top: 89px; left: 18px; display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--pg-green); border: 3px solid #fff; color: var(--pg-gold); font-size: 1.15rem; }
.biz-gallery-content { padding: 29px 18px 14px; }
.biz-gallery-content h3 { color: var(--pg-ink); font-size: 1.13rem; margin: 0 0 4px; }
.biz-gallery-content p { color: #53605d; font-size: .76rem; line-height: 1.35; margin: 0; max-width: 170px; }
.biz-gallery-arrow { position: absolute; display: grid; place-items: center; width: 37px; height: 37px; right: 16px; bottom: 18px; border: 1px solid #bcb49c; border-radius: 50%; font-size: 1rem; }
.biz-pg-info-bar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 3.5%; background: linear-gradient(90deg, #003f38, #005146); color: #fff; }
.biz-pg-info-bar span { display: flex; align-items: center; gap: 12px; font-size: .9rem; font-weight: 650; white-space: nowrap; }
.biz-pg-info-bar span i { color: var(--pg-gold); font-size: 1.35rem; }
.biz-pg-info-bar .btn-biz-solid-pg { white-space: nowrap; padding: 13px 25px; }

@media (max-width: 991px) {
  .biz-pg-hero-image { inset: 0; opacity: .45; background-position: 70% 0; }
  .biz-banner-pg > .biz-banner-grid { min-height: 0; padding: 45px 28px 46px; grid-template-columns: 1fr; }
  .biz-banner-pg > .biz-banner-grid::before { background: rgba(0, 56, 49, .83); }
  .biz-gallery-row { grid-template-columns: repeat(3, 1fr); }
  .biz-pg-info-bar { flex-wrap: wrap; justify-content: flex-start; padding: 18px 28px; }
}
@media (max-width: 575px) {
  .biz-banner-pg .biz-pg-title { font-size: 2.8rem; }
  .biz-banner-pg .biz-feature { flex: 1 1 120px; }
  .biz-gallery-row { grid-template-columns: 1fr; }
  .biz-gallery-tile { min-height: 200px; }
  .biz-pg-info-bar span { white-space: normal; font-size: .82rem; }
}

.biz-cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.biz-cta-band h2 { color: #fff; margin: 10px 0 8px; }
.biz-cta-band p { color: rgba(255,255,255,0.8); margin: 0; max-width: 480px; }
.biz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Other Businesses — mobile refinements */
@media (max-width: 991px) {
  .biz-pg-card { display: none; }
  .biz-banner-courier .biz-banner-grid { grid-template-columns: minmax(0, 1fr); }
  .biz-banner-pg .biz-banner-copy, .biz-banner-courier .biz-banner-copy { max-width: none; }
  .biz-banner-desc { max-width: none; }
}
@media (max-width: 575px) {
  .biz-stack { gap: 22px; }
  .biz-banner, .biz-banner-pg { border-radius: 16px; }
  .biz-banner-grid, .biz-banner-grid-reverse, .biz-banner-pg > .biz-banner-grid { padding: 30px 20px 28px; gap: 18px; }
  .biz-banner-title { font-size: 2rem; }
  .biz-banner-courier .biz-banner-desc { font-size: .93rem; }
  .biz-banner-courier .biz-feature { flex: 1 1 calc(50% - 12px); min-height: 92px; }
  .biz-banner-pg .biz-feature { flex: 1 1 calc(50% - 18px); max-width: none; }
  .biz-banner-actions { flex-direction: column; align-items: stretch; }
  .biz-banner-actions a { justify-content: center; text-align: center; }
  .biz-info-bar-inner { flex-direction: column; align-items: flex-start; padding: 18px 20px; gap: 12px; }
  .biz-info-bar-inner .btn-biz-solid { width: 100%; justify-content: center; text-align: center; }
  .biz-pg-info-bar { flex-direction: column; align-items: flex-start; padding: 18px 20px; gap: 12px; }
  .biz-pg-info-bar .btn-biz-solid-pg { width: 100%; justify-content: center; text-align: center; }
  .biz-cta-band { padding: 30px 22px; }
  .biz-cta-band .btn { width: 100%; }
}
