:root {
  --color-primary: #061570;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-primary-90: rgba(6, 21, 112, .90);
  --color-primary-75: rgba(6, 21, 112, .75);
  --color-primary-50: rgba(6, 21, 112, .50);
  --color-primary-15: rgba(6, 21, 112, .15);
  --color-primary-08: rgba(6, 21, 112, .08);
  --color-black-80: rgba(0, 0, 0, .80);
  --color-black-60: rgba(0, 0, 0, .60);
  --color-black-40: rgba(0, 0, 0, .40);
  --color-black-10: rgba(0, 0, 0, .10);
  --color-black-06: rgba(0, 0, 0, .06);
  --navy: var(--color-primary);
  --deep-navy: var(--color-primary);
  --blue: var(--color-primary);
  --ink: var(--color-primary);
  --muted: var(--color-black-60);
  --cream: var(--color-white);
  --white: var(--color-white);
  --sans: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-primary: "Inter", "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-md: 16px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 36px;
  --text-4xl: 48px;
  --text-5xl: 60px;
  --text-hero: clamp(34px, 5vw, 62px);
  --line-tight: 1.1;
  --line-heading: 1.2;
  --line-body: 1.6;
  --shadow: 0 16px 42px var(--color-black-10);
}

* { box-sizing: border-box; font-family: var(--font-primary); }
html { width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { width: 100%; overflow-x: hidden; margin: 0; color: var(--color-black); background: var(--color-white); font-family: var(--font-primary); font-size: var(--text-base); line-height: var(--line-body); font-weight: var(--font-weight-regular); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 84px 0; }
.site-header { position: absolute; z-index: 20; top: 0; left: 0; right: 0; color: white; }
.site-header.header-solid {
  position: relative;
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 10px 28px rgba(6,21,112,.12);
}
.site-header .container { width: min(100% - 96px, 1880px); }
.nav-wrap { height: 124px; display: flex; align-items: center; gap: 42px; }
.brand img { width: 124px; height: 92px; object-fit: contain; display: block; }
.main-nav { min-width: 0; display: flex; align-items: center; gap: clamp(14px, 1.45vw, 30px); margin-left: auto; font-size: clamp(14px, .82vw, 18px); font-weight: 600; letter-spacing: 0; white-space: nowrap; }
.main-nav a { position: relative; padding: 16px 0; color: var(--color-white); }
.main-nav a::after { content: ""; position: absolute; bottom: 6px; left: 0; width: 0; height: 3px; border-radius: 999px; background: var(--color-white); transition: .25s; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.mobile-nav-cta { display: none; }
.button { min-height: 50px; padding: 0 22px; border: 0; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: var(--text-base); font-weight: 700; line-height: 1.1; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(6,21,112,.22); }
.button-primary, .button-blue { border: 1px solid var(--color-primary); background: var(--color-primary); color: var(--color-white); }
.button-white { border: 1px solid var(--color-primary-15); background: var(--color-white); color: var(--color-primary); }
.site-header .button-primary { border-color: var(--color-white); background: var(--color-white); color: var(--color-primary); }
.site-header.header-solid .main-nav a,
.site-header.header-solid .menu-toggle {
  color: var(--color-white);
}
.site-header.header-solid .menu-toggle span {
  background: var(--color-white);
}
.site-header.header-solid .nav-wrap {
  height: 92px;
}
.site-header.header-solid .brand img {
  width: 108px;
  height: 78px;
}
.site-header.header-solid .nav-cta {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 14px;
  font-size: 16px;
}
.nav-cta { min-height: 58px; padding-inline: clamp(18px, 1.4vw, 28px); border-radius: 14px; font-size: clamp(15px, .92vw, 19px); font-weight: 700; letter-spacing: 0; white-space: nowrap; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: white; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s ease, transform .75s ease; will-change: opacity, transform; }
.reveal-image { opacity: 0; transform: scale(.97) translateY(24px); transition: opacity .85s ease, transform .85s ease; will-change: opacity, transform; }
.reveal.is-visible, .reveal-image.is-visible { opacity: 1; transform: translateY(0); }
.reveal-image.is-visible { transform: scale(1) translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

.hero { position: relative; min-height: 740px; padding: 145px 0 155px; overflow: visible; color: var(--color-white); background: var(--color-primary); }
.hero-slider { position: absolute; inset: 0; overflow: hidden; background: var(--color-primary); }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transform: scale(1.035); transition: opacity .9s ease, visibility .9s ease, transform 6.5s ease; }
.hero-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide picture, .hero-slide img { width: 100%; height: 100%; display: block; }
.hero-slide img { object-fit: cover; object-position: center; }
.hero-slide:first-child img { object-position: center 48%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,21,112,.88) 0%, rgba(6,21,112,.56) 40%, rgba(6,21,112,.08) 76%), linear-gradient(0deg, rgba(6,21,112,.38), transparent 50%); transition: background .45s ease; }
.hero[data-align="right"] .hero-shade { background: linear-gradient(270deg, rgba(6,21,112,.88) 0%, rgba(6,21,112,.56) 40%, rgba(6,21,112,.08) 76%), linear-gradient(0deg, rgba(6,21,112,.38), transparent 50%); }
.hero-content { position: relative; z-index: 2; max-width: 620px; transition: transform .35s ease, opacity .35s ease; }
.hero-content[data-align="right"],
.hero-content--right { margin-left: auto; }

/* Each slide deliberately reserves its least busy side for the copy. Keeping
   this selector on the hero as well prevents a late layout rule from leaving
   the copy on the wrong side while a slide changes. */
.hero[data-align="right"] .hero-content {
  margin-left: auto;
  margin-right: 0;
}
.eyebrow { margin: 0 0 13px; color: var(--blue); font-size: var(--text-xs); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-light { color: var(--color-white); }
.eyebrow span { color: currentColor; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); font-weight: var(--font-weight-bold); color: var(--color-primary); }

h1 { max-width: 690px; margin: 0; color: white; font-size: var(--text-hero); line-height: 1.04; letter-spacing: -.025em; }
.hero-content h1 { max-width: 620px; }
.hero-copy { max-width: 590px; margin: 17px 0; font-size: var(--text-base); line-height: 1.6; color: rgba(255,255,255,.90); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 16px; }
.hero-actions .button-primary { border-color: var(--color-white); background: transparent; color: var(--color-white); }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges span { padding: 10px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 50px; background: rgba(6,21,112,.35); backdrop-filter: blur(8px); font-size: 12px; }
.hero-controls { position: absolute; z-index: 8; left: 50%; bottom: 210px; transform: translateX(-50%); display: flex; align-items: center; gap: 13px; }
.hero-arrow { width: 37px; height: 37px; padding: 0; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: var(--color-white); background: rgba(6,21,112,.42); backdrop-filter: blur(8px); cursor: pointer; transition: background .2s, border-color .2s, transform .2s; }
.hero-arrow:hover { border-color: var(--color-white); background: rgba(6,21,112,.80); transform: scale(1.06); }
.hero-dots { display: flex; align-items: center; gap: 7px; }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50px; background: rgba(255,255,255,.55); cursor: pointer; transition: width .25s, background .25s; }
.hero-dots button.active { width: 25px; background: var(--color-white); }
.booking-card { position: absolute; z-index: 5; left: 50%; bottom: 30px; transform: translateX(-50%); width: min(calc(100% - 88px), 1180px); max-width: 1180px; padding: 16px 18px; border-radius: 22px; background: rgba(255,255,255,.98); color: var(--color-primary); box-shadow: 0 22px 58px rgba(0,0,0,.16); display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr auto; gap: 14px; align-items: end; }
.booking-card.search-panel { padding: 16px; display: block; border-radius: 22px; }
.booking-card.reveal, .booking-card.reveal.is-visible { transform: translateX(-50%); }
.booking-card label > span { display: block; margin: 0 0 7px; font-size: 12px; font-weight: 700; }
.booking-card .button { min-height: 54px; white-space: nowrap; }
.field { min-width: 0; height: 54px; padding: 0 13px; border: 1px solid var(--color-primary-15); border-radius: 11px; display: flex; align-items: center; gap: 8px; color: var(--color-primary); }
.field input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--color-black-80); background: transparent; font-size: 14px; }
.date-field { position: relative; }
.date-field::after { content: ""; width: 16px; height: 16px; flex: 0 0 16px; opacity: .7; background: currentColor; -webkit-mask: url("/public/flyo-icons/future-use/filters/travel-month.svg") center/contain no-repeat; mask: url("/public/flyo-icons/future-use/filters/travel-month.svg") center/contain no-repeat; pointer-events: none; }
.date-field input { color-scheme: light; }
.search-tabs { width: max-content; max-width: 100%; margin: -44px 0 12px; padding: 5px; border: 1px solid var(--color-primary-08); border-radius: 15px; background: rgba(255,255,255,.96); box-shadow: 0 12px 28px rgba(6,21,112,.12); display: flex; gap: 5px; }
.search-tab { min-height: 40px; padding: 0 16px; border: 0; border-radius: 11px; background: var(--color-white); color: var(--color-primary); display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 900; cursor: pointer; transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease; }
.search-tab span { font-size: 14px; line-height: 1; }
.search-tab:hover { transform: translateY(-1px); background: var(--color-primary-08); }
.search-tab.active { background: var(--color-primary); color: var(--color-white); box-shadow: 0 10px 20px rgba(6,21,112,.18); }
.search-form-row { display: none; grid-template-columns: minmax(180px, 1.25fr) repeat(4, minmax(118px, 1fr)) minmax(150px, auto); gap: 10px; align-items: end; }
.search-form-row.active { display: grid; }
.search-form-row label { min-width: 0; }
.search-form-row .button { min-width: 150px; padding-inline: 20px; }

.stats-luxury-section { position: relative; z-index: 2; padding: 10px 22px; background: radial-gradient(circle at 50% 0, rgba(255,255,255,.10), transparent 33%), var(--color-primary); }
.stats-luxury-container { width: 100%; max-width: 1580px; margin: 0 auto; }
.stats-luxury-box { position: relative; min-height: 112px; overflow: hidden; border: 1px solid rgba(255,255,255,.50); border-radius: 18px; background: var(--color-primary); box-shadow: 0 12px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.15), inset 0 0 20px rgba(255,255,255,.04); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats-luxury-box::before { content: ""; position: absolute; z-index: 3; top: -1px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.90), transparent); }
.stats-luxury-box::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 50% -10%, rgba(255,255,255,.10), transparent 34%); }
.stats-silhouette { position: absolute; z-index: 0; bottom: 0; width: 29%; height: 82%; color: var(--color-white); fill: currentColor; stroke: currentColor; stroke-width: 3; opacity: .07; }
.stats-silhouette-left { left: -2%; }
.stats-silhouette-right { right: -1%; fill: none; opacity: .11; }
.stats-luxury-item { position: relative; z-index: 2; min-width: 0; padding: 8px 14px 7px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; text-align: center; }
.stats-icon-circle { width: 36px; height: 36px; flex: 0 0 36px; border: 1px solid rgba(255,255,255,.70); border-radius: 50%; color: var(--color-white); background: rgba(255,255,255,.06); box-shadow: 0 0 12px rgba(255,255,255,.10), inset 0 0 8px rgba(255,255,255,.04); display: grid; place-items: center; }
.stats-icon-circle svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.stats-ornament { position: relative; width: 36px; height: 1px; margin: 0; background: linear-gradient(90deg, transparent, var(--color-white) 24%, var(--color-white) 76%, transparent); }
.stats-ornament::after { content: ""; position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; background: var(--color-white); transform: translate(-50%,-50%) rotate(45deg); box-shadow: 0 0 6px rgba(255,255,255,.40); }
.stats-ornament-bottom { width: 32px; margin: 1px 0 0; }
.stats-value { color: var(--color-white); font: 600 clamp(20px, 1.55vw, 26px)/.95 var(--font-primary); letter-spacing: 0; white-space: nowrap; text-shadow: 0 3px 14px rgba(0,0,0,.22); }
.stats-value-wide { font-size: clamp(18px, 1.45vw, 23px); }
.stats-label { color: rgba(255,255,255,.90); font-size: clamp(11px, .74vw, 12px); line-height: 1.2; white-space: nowrap; }
.stats-divider { position: absolute; right: 0; top: 24%; width: 1px; height: 52%; background: linear-gradient(180deg, transparent, rgba(255,255,255,.55), transparent); }
.stats-divider span { position: absolute; left: 50%; top: 50%; width: 6px; height: 6px; background: var(--color-white); transform: translate(-50%,-50%) rotate(45deg); box-shadow: 0 0 6px rgba(255,255,255,.35); }

.section-heading { margin-bottom: 36px; text-align: center; }
.section-heading h2, .why-intro h2 { margin: 0; font-size: clamp(32px, 3vw, 46px); line-height: 1.08; }
.section-subtitle { max-width: 760px; margin: 13px auto 0; color: var(--color-black-60); font-size: var(--text-base); line-height: 1.65; }
.plane-divider { margin-top: 7px; color: var(--color-primary); font-size: 13px; }
.section-action { margin-top: 34px; display: flex; justify-content: center; }
.travel-way { background: linear-gradient(180deg, rgba(6,21,112,.035), var(--color-white)); }
.travel-style-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.travel-style-card { min-width: 0; }
.travel-style-card { min-height: 100%; overflow: hidden; border: 1px solid var(--color-primary-08); border-radius: 16px; background: var(--color-white); box-shadow: 0 12px 34px var(--color-black-06); display: flex; flex-direction: column; transition: transform .22s, box-shadow .22s; }
.travel-style-card:hover { transform: translateY(-5px); box-shadow: 0 18px 42px var(--color-black-10); }
.travel-style-image { min-height: 220px; background: var(--color-primary-08) center/cover; }
.travel-style-body { min-height: 210px; padding: 24px 26px 26px; display: flex; flex-direction: column; }
.travel-style-card h3 { margin: 0 0 10px; color: var(--color-primary); font-size: 1.35rem; line-height: 1.15; }
.travel-style-card p { margin: 0; color: var(--color-black-60); font-size: .95rem; line-height: 1.6; }
.travel-style-card a { margin-top: 16px; padding-top: 0; color: var(--color-primary); font-size: .85rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.cruise-package-card { min-width: 0; height: 100%; overflow: hidden; border: 1px solid var(--color-primary-08); border-radius: 15px; background: var(--color-white); box-shadow: 0 10px 28px rgba(6,21,112,.07); display: flex; flex-direction: column; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.cruise-package-card:hover { transform: translateY(-4px); border-color: var(--color-primary-15); box-shadow: 0 16px 36px rgba(6,21,112,.11); }
.cruise-image-link { position: relative; display: block; aspect-ratio: 16 / 10; margin: 10px 10px 0; overflow: hidden; border-radius: 12px; background: var(--color-primary-08); }
.cruise-image-link img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease, filter .25s ease; }
.cruise-package-card:hover .cruise-image-link img { transform: scale(1.035); filter: saturate(1.04) contrast(1.03); }
.cruise-duration-pill { position: absolute; left: 10px; top: 10px; min-height: 28px; padding: 0 10px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--color-primary); box-shadow: 0 8px 18px rgba(0,0,0,.10); display: inline-flex; align-items: center; font-size: 11px; font-weight: 900; letter-spacing: .02em; }
.cruise-favorite { position: absolute; right: 12px; top: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.94); color: var(--color-primary); box-shadow: 0 8px 18px rgba(0,0,0,.10); display: grid; place-items: center; }
.cruise-favorite svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.cruise-card-body { flex: 1; min-height: 0; padding: 14px; display: flex; flex-direction: column; }
.cruise-title-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: start; }
.cruise-title-row a { min-width: 0; margin: 0; text-transform: none; letter-spacing: 0; }
.cruise-title-row h3 { margin: 0; color: var(--color-primary); font-size: clamp(19px, 1.45vw, 23px); line-height: 1.14; letter-spacing: -.01em; }
.cruise-title-row > span { min-height: 26px; padding: 0 10px; border: 1px solid var(--color-primary-08); border-radius: 999px; background: var(--color-primary-08); color: var(--color-primary); display: inline-flex; align-items: center; font-size: 11px; font-weight: 900; }
.cruise-card-title { margin: 0; color: var(--color-primary); text-transform: none; letter-spacing: 0; }
.cruise-card-title h3 { min-height: 52px; margin: 0; color: var(--color-primary); font-size: clamp(17px, 1.2vw, 20px); line-height: 1.18; letter-spacing: -.01em; }
.cruise-meta { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 7px 10px; color: var(--color-black-60); font-size: 13px; font-weight: 700; }
.cruise-meta span { display: inline-flex; align-items: center; gap: 7px; }
.cruise-meta span + span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--color-primary); opacity: .35; }
.cruise-divider { height: 1px; margin: 14px 0; background: var(--color-primary-08); }
.cruise-block-label { display: flex; align-items: center; gap: 8px; color: var(--color-primary); font-size: 12px; font-weight: 900; letter-spacing: .02em; }
.cruise-block-label svg { width: 17px; height: 17px; flex: 0 0 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cruise-departures { min-height: 42px; margin-top: 9px; display: grid; gap: 6px; }
.cruise-month-row { min-width: 0; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; color: var(--color-black-60); font-size: 12px; }
.cruise-month-row strong { color: var(--color-primary); font-size: 12px; font-weight: 900; }
.cruise-month-row span { display: inline-flex; flex-wrap: wrap; gap: 5px; }
.cruise-month-row b { min-width: 30px; height: 28px; padding: 0 8px; border: 1px solid var(--color-primary-08); border-radius: 999px; background: rgba(6,21,112,.035); color: var(--color-primary); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 900; }
.cruise-route-tags { min-height: 67px; margin-top: 9px; display: flex; flex-wrap: wrap; gap: 7px; align-content: flex-start; }
.cruise-route-tags span, .cruise-route-tags a { min-height: 28px; padding: 0 10px; border-radius: 999px; display: inline-flex; align-items: center; font-size: 12px; font-weight: 850; line-height: 1; }
.cruise-route-tags span { border: 1px solid var(--color-primary-08); background: var(--color-white); color: var(--color-primary-75); }
.cruise-route-tags a { margin: 0; border: 0; color: var(--color-primary); text-transform: none; letter-spacing: 0; text-decoration: underline; text-underline-offset: 3px; }
.cruise-card-bottom { margin-top: auto; padding-top: 13px; border-top: 1px solid var(--color-primary-08); display: block; }
.cruise-price small { display: block; color: var(--color-black-60); font-size: 11px; line-height: 1; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.cruise-price strong { display: block; margin-top: 5px; color: var(--color-primary); font-size: 21px; line-height: 1; font-weight: 900; letter-spacing: -.01em; }
.cruise-view-button { min-height: 44px; margin-top: 14px; border-radius: 10px; background: var(--color-primary); color: var(--color-white); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; text-transform: none; letter-spacing: 0; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.cruise-view-button:hover { transform: translateY(-2px); background: #082098; box-shadow: 0 10px 22px rgba(6,21,112,.18); }
.cruise-actions { display: flex; gap: 7px; align-items: center; }
.cruise-actions a { width: 38px; height: 38px; margin: 0; padding: 0; border: 1px solid var(--color-primary-12, var(--color-primary-15)); border-radius: 12px; background: var(--color-white); color: var(--color-primary); display: grid; place-items: center; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.cruise-actions a:hover { transform: translateY(-2px); background: var(--color-primary-08); box-shadow: 0 10px 22px rgba(6,21,112,.10); }
.cruise-actions svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cruise-actions .cruise-whatsapp { border-color: rgba(37,211,102,.34); background: #25D366; color: var(--color-white); }
.cruise-actions .cruise-whatsapp:hover { background: #20bd5a; box-shadow: 0 10px 22px rgba(37,211,102,.24); }
.visa-services { position: relative; overflow: hidden; padding: 80px 0; background: linear-gradient(180deg, rgba(238,245,255,.40), var(--color-white)); }
.visa-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(36px, 4.6vw, 56px); align-items: center; }
.visa-flight-path { position: absolute; z-index: 0; top: 56px; left: min(46vw, 720px); width: min(34vw, 430px); color: rgba(6,21,112,.42); pointer-events: none; }
.visa-flight-path svg { width: 100%; height: auto; overflow: visible; display: block; }
.visa-flight-path path { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-dasharray: 6 14; }
.visa-flight-path polygon { fill: currentColor; }
.visa-copy { max-width: 560px; }
.visa-copy h2 { max-width: 560px; margin: 14px 0 20px; color: var(--color-primary); font-size: clamp(35px, 4vw, 61px); line-height: 1.05; letter-spacing: 0; }
.visa-copy p:not(.eyebrow) { max-width: 560px; margin: 0 0 28px; color: var(--color-black-60); font-size: 1rem; line-height: 1.6; }
.visa-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.visa-card { min-width: 0; overflow: hidden; border: 1px solid var(--color-primary-08); border-radius: 22px; background: var(--color-white); box-shadow: 0 14px 36px rgba(6,21,112,.09); display: flex; flex-direction: column; }
.visa-card-image { height: 150px; overflow: hidden; background: var(--color-primary-08); }
.visa-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease, filter .25s ease; }
.visa-card:hover .visa-card-image img { transform: scale(1.035); filter: saturate(1.05) contrast(1.03); }
.visa-card-body { padding: 22px 24px 24px; }
.visa-card-grid h3 { margin: 0 0 10px; color: var(--color-primary); font-size: 22px; line-height: 1.1; }
.visa-card-grid p { margin: 0; color: var(--color-black-60); font-size: 14px; line-height: 1.5; }

/* Dedicated Visa Services page */
.visa-page {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 42%, #f5f8ff 100%);
  color: var(--color-primary);
}
.visa-page-hero { position: relative; overflow: hidden; padding: clamp(54px, 6vw, 88px) 0 clamp(42px, 5vw, 70px); }
.visa-page-hero::before { content: ""; position: absolute; right: -120px; top: 70px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(47,107,255,.15), transparent 68%); pointer-events: none; }
.visa-page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr); gap: clamp(32px, 5vw, 76px); align-items: center; }
.visa-page-copy h1 { margin: 8px 0 16px; color: var(--color-primary); font-size: clamp(48px, 6vw, 86px); line-height: .96; letter-spacing: 0; }
.visa-page-copy p { max-width: 620px; margin: 0 0 18px; color: rgba(0,0,0,.66); font-size: clamp(15px, 1.05vw, 18px); line-height: 1.72; }
.visa-page-copy .visa-page-lead { margin-bottom: 10px; color: var(--color-primary); font-size: clamp(20px, 1.7vw, 28px); font-weight: 800; line-height: 1.25; }
.visa-page-actions, .visa-form-actions, .visa-contact-strip { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.visa-page-actions { margin-top: 28px; }
.visa-page-visual { position: relative; min-height: clamp(360px, 42vw, 520px); border: 1px solid rgba(6,21,112,.1); border-radius: 28px; overflow: hidden; background: var(--color-white); box-shadow: 0 24px 70px rgba(6,21,112,.14); }
.visa-page-visual img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; display: block; }
.visa-page-note { position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.68); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: 0 18px 40px rgba(6,21,112,.16); }
.visa-page-note strong, .visa-page-note span { display: block; }
.visa-page-note strong { margin-bottom: 4px; color: var(--color-primary); font-size: 18px; }
.visa-page-note span { color: rgba(0,0,0,.62); line-height: 1.45; }
.visa-page-section, .visa-process-section, .visa-enquiry-section { padding: clamp(48px, 5.2vw, 76px) 0; }
.visa-enquiry-section { padding-bottom: clamp(42px, 4vw, 60px); }
.visa-page-heading { margin-bottom: 28px; }
.visa-service-grid, .visa-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.visa-service-card, .visa-process-grid article, .visa-enquiry-form { min-width: 0; border: 1px solid rgba(6,21,112,.1); border-radius: 20px; background: rgba(255,255,255,.9); box-shadow: 0 16px 44px rgba(6,21,112,.08); }
.visa-service-card { padding: 24px; }
.visa-service-icon, .visa-process-grid span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: rgba(6,21,112,.08); color: var(--color-primary); font-size: 13px; font-weight: 900; }
.visa-service-card h3, .visa-process-grid h3 { margin: 18px 0 8px; color: var(--color-primary); font-size: clamp(20px, 1.4vw, 26px); line-height: 1.14; }
.visa-service-card p, .visa-process-grid p { margin: 0; color: rgba(0,0,0,.64); line-height: 1.62; }
.visa-approval-note { margin: 24px 0 0; padding: 16px 18px; border: 1px solid rgba(6,21,112,.1); border-radius: 16px; background: rgba(6,21,112,.045); color: rgba(6,21,112,.78); font-size: 14px; line-height: 1.6; }
.visa-process-section { background: linear-gradient(180deg, rgba(6,21,112,.035), rgba(255,255,255,.72)); }
.visa-process-grid article { padding: 22px; }
.visa-enquiry-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
.visa-enquiry-copy h2 { margin: 10px 0 16px; color: var(--color-primary); font-size: clamp(36px, 4vw, 58px); line-height: 1.02; }
.visa-enquiry-copy p { max-width: 560px; margin: 0 0 22px; color: rgba(0,0,0,.66); line-height: 1.72; }
.visa-contact-strip a { min-height: 44px; padding: 0 16px; display: inline-flex; align-items: center; border: 1px solid rgba(6,21,112,.12); border-radius: 999px; background: var(--color-white); color: var(--color-primary); font-weight: 800; }
.visa-enquiry-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: clamp(22px, 3vw, 32px); }
.visa-enquiry-form label { min-width: 0; display: grid; gap: 8px; color: var(--color-primary); font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.visa-enquiry-form input, .visa-enquiry-form select, .visa-enquiry-form textarea { width: 100%; min-width: 0; border: 1px solid rgba(6,21,112,.13); border-radius: 12px; background: var(--color-white); color: var(--color-black); font-size: 15px; font-weight: 500; outline: 0; }
.visa-enquiry-form input, .visa-enquiry-form select { height: 52px; padding: 0 15px; }
.visa-enquiry-form textarea { min-height: 118px; padding: 15px; resize: vertical; }
.visa-message-field, .visa-form-actions { grid-column: 1 / -1; }
.packages-trust-strip { position: relative; z-index: 3; padding: 18px 0 8px; background: linear-gradient(180deg, var(--color-white), rgba(238,245,255,.45)); }
.packages-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.packages-trust-grid article { min-height: 82px; padding: 15px 16px; border: 1px solid rgba(6,21,112,.09); border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: 0 14px 34px rgba(6,21,112,.07); display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; }
.trust-strip-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(47,107,255,.08); color: var(--color-primary); display: grid; place-items: center; font-size: 12px; font-weight: 900; letter-spacing: .03em; }
.packages-trust-grid strong { display: block; color: var(--color-primary); font-size: 14px; line-height: 1.15; }
.packages-trust-grid small { display: block; margin-top: 4px; color: rgba(0,0,0,.55); font-size: 12px; line-height: 1.3; }
.package-showcase { background: linear-gradient(180deg, rgba(238,245,255,.35), var(--color-white) 38%, rgba(6,21,112,.035)); }
.package-list-section { position: relative; overflow: hidden; isolation: isolate; }
.package-list-section .container { position: relative; z-index: 2; }
.package-decor { position: absolute; z-index: 0; pointer-events: none; }
.package-decor-flight { top: 92px; left: 7%; width: 320px; height: 98px; opacity: .08; background: radial-gradient(circle at 91% 12%, var(--color-primary) 0 6px, transparent 7px), radial-gradient(circle at 0 80%, transparent 0 3px, var(--color-primary) 4px, transparent 5px); }
.package-decor-flight::before { content: ""; position: absolute; inset: 22px 34px auto 20px; height: 46px; border-top: 2px dashed var(--color-primary); border-radius: 50%; transform: rotate(-7deg); }
.package-decor-flight::after { content: "✈"; position: absolute; right: 18px; top: 0; color: var(--color-primary); font-size: 28px; transform: rotate(18deg); }
.package-decor-contour { right: -120px; top: 210px; width: 420px; height: 310px; opacity: .06; border-radius: 50%; background: repeating-radial-gradient(ellipse at 44% 48%, transparent 0 15px, var(--color-primary) 16px 17px); }
.package-decor-wave { left: -90px; bottom: 110px; width: 620px; height: 210px; opacity: .055; background: repeating-radial-gradient(ellipse at 50% 110%, transparent 0 17px, #2f6bff 18px 19px); }
.package-decor-blob { width: 330px; height: 330px; border-radius: 50%; opacity: .08; filter: blur(6px); background: #2f6bff; }
.package-decor-blob-one { left: 8%; top: 410px; }
.package-decor-blob-two { right: 11%; bottom: 230px; }
.floating-region-chip { position: absolute; z-index: 1; padding: 8px 14px; border: 1px solid rgba(6,21,112,.08); border-radius: 999px; background: rgba(255,255,255,.55); color: rgba(6,21,112,.42); box-shadow: 0 10px 24px rgba(6,21,112,.05); font-size: 12px; font-weight: 900; pointer-events: none; }
.chip-thailand { top: 250px; left: 4%; }
.chip-malaysia { top: 540px; right: 5%; }
.chip-singapore { top: 720px; left: 8%; }
.chip-sri-lanka { bottom: 520px; right: 7%; }
.chip-kenya { bottom: 330px; left: 4%; }
.chip-uae { bottom: 170px; right: 18%; }
.package-filter-panel { margin: 18px 0 20px; padding: 18px 24px 16px; border: 1px solid var(--color-primary-08); border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 18px 50px rgba(6,21,112,.10); backdrop-filter: blur(10px); }
.finder-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); gap: 20px; align-items: end; padding-bottom: 16px; }
.finder-head h3 { margin: 0; color: var(--color-primary); font-size: 21px; line-height: 1.1; }
.finder-head p { margin: 6px 0 0; color: rgba(0,0,0,.58); font-size: 13px; line-height: 1.45; }
.package-search { min-width: 0; }
.package-search span { display: block; margin-bottom: 7px; color: rgba(6,21,112,.65); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.package-search input { width: 100%; min-height: 48px; padding: 0 17px; border: 1px solid rgba(6,21,112,.13); border-radius: 14px; outline: 0; background: var(--color-white); color: var(--color-primary); font-size: 14px; font-weight: 700; box-shadow: 0 8px 22px rgba(6,21,112,.04); }
.filter-toggle { display: none; width: 100%; min-height: 46px; margin-top: 14px; border: 1px solid rgba(6,21,112,.14); border-radius: 13px; background: var(--color-primary); color: var(--color-white); font-weight: 800; cursor: pointer; }
.package-search input::placeholder { color: rgba(6,21,112,.42); }
.filter-row { display: grid; grid-template-columns: repeat(5, minmax(142px, 1fr)) auto; gap: 12px; align-items: center; padding: 14px 0 12px; border-top: 1px solid var(--color-primary-08); border-bottom: 1px solid var(--color-primary-08); }
.filter-select, .sort-select, .clear-filters, .filter-chip { min-height: 48px; border: 1px solid rgba(6,21,112,.13); border-radius: 14px; background: var(--color-white); color: var(--color-primary); font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .18s, border-color .18s, box-shadow .18s, background .18s; }
.filter-select { padding: 0 16px; display: flex; align-items: center; gap: 11px; text-align: left; }
.filter-select:hover, .sort-select:hover, .filter-chip:hover { transform: translateY(-2px); border-color: rgba(6,21,112,.30); box-shadow: 0 10px 22px rgba(6,21,112,.08); }
.filter-icon { width: 20px; height: 20px; display: inline-grid; place-items: center; color: var(--color-primary); font-size: 17px; }
.filter-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.filter-chevron { margin-left: auto; font-size: 17px; }
.clear-filters { padding: 0 8px; border-color: transparent; background: transparent; display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: rgba(6,21,112,.78); white-space: nowrap; }
.quick-filter-row { padding-top: 12px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: center; }
.quick-filter-row > .sort-control { display: none; }
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip { min-width: 118px; padding: 0 17px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; }
.filter-chip span { font-size: 15px; font-weight: 900; line-height: 1; }
.filter-chip.active { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-white); box-shadow: 0 12px 24px rgba(6,21,112,.16); }
.sort-control { min-height: 52px; padding-left: 20px; border-left: 1px solid var(--color-primary-15); display: inline-flex; align-items: center; gap: 12px; color: var(--color-primary); font-size: 15px; font-weight: 700; white-space: nowrap; }
.sort-select { min-width: 178px; padding: 0 16px; display: inline-flex; align-items: center; justify-content: space-between; gap: 16px; }
.package-results-row { margin: 0 0 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: rgba(6,21,112,.72); font-size: 14px; font-weight: 800; }
.package-results-row .sort-control { min-height: 46px; padding-left: 0; border-left: 0; gap: 10px; }
.package-results-row .sort-select { min-height: 46px; min-width: 178px; }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; align-items: stretch; }
.package-card { height: 100%; overflow: hidden; border: 1px solid var(--color-primary-08); border-radius: 24px; background: var(--color-white); box-shadow: 0 18px 45px rgba(6,21,112,.10); display: flex; flex-direction: column; min-height: 100%; transition: transform .35s ease, box-shadow .35s ease; }
.package-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(6,21,112,.16); }
.package-card-image { position: relative; height: 225px; overflow: hidden; background: var(--color-primary-08); display: block; }
.package-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease, filter .25s ease; }
.package-card:hover .package-card-image img { transform: scale(1.04); filter: saturate(1.08) contrast(1.04); }
.package-badge { position: absolute; left: 18px; top: 18px; min-height: 38px; padding: 0 16px; border-radius: 999px; background: var(--color-primary); color: var(--color-white); display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 900; box-shadow: 0 10px 24px rgba(6,21,112,.24); }
.package-badge svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.package-card-body { padding: 24px 26px 26px; display: flex; flex: 1; flex-direction: column; }
.package-card h3 { margin: 0 0 15px; color: var(--color-primary); font-size: clamp(26px, 1.8vw, 32px); line-height: 1.08; letter-spacing: 0; }
.package-card-meta { display: grid; gap: 9px; color: var(--color-black-60); font-size: 14px; font-weight: 600; }
.package-card-meta span { display: flex; align-items: center; gap: 10px; min-width: 0; }
.package-card-meta b { color: var(--color-primary); font-weight: 900; }
.package-card-meta svg { width: 22px; height: 22px; flex: 0 0 22px; padding: 4px; border-radius: 50%; background: rgba(6,21,112,.08); color: var(--color-primary); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.package-highlight-row { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 9px; }
.package-highlight-row span { min-height: 32px; padding: 0 14px; border: 1px solid rgba(6,21,112,.08); border-radius: 999px; background: rgba(6,21,112,.055); color: var(--color-primary); display: inline-flex; align-items: center; font-size: 12px; font-weight: 900; }
.package-card-footer { margin-top: auto; padding-top: 24px; display: block; }
.package-category-chip { display: none; }
.package-price { margin: 0; color: var(--color-primary); text-align: left; display: block; }
.package-price small { display: block; margin-bottom: 5px; color: rgba(6,21,112,.62); font-size: 13px; line-height: 1; font-weight: 800; }
.package-price strong { color: var(--color-primary); font-size: clamp(34px, 2.8vw, 44px); line-height: .96; letter-spacing: 0; }
.package-price span { margin-left: 7px; color: var(--color-black-60); font-size: 13px; font-weight: 700; }
.package-action-row { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; }
.package-view-link, .package-enquire-link { min-height: 48px; padding: 0 14px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; font-weight: 900; line-height: 1; white-space: nowrap; transition: transform .2s, box-shadow .2s, background .2s, opacity .2s; }
.package-view-link { background: var(--color-primary); color: var(--color-white); }
.package-enquire-link { border: 1px solid var(--color-primary); background: var(--color-white); color: var(--color-primary); white-space: nowrap; }
.package-view-link svg, .package-enquire-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.package-view-link:hover, .package-enquire-link:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(6,21,112,.16); }
.destinations { position: relative; overflow: hidden; background: var(--color-white); font-family: var(--font-primary); }
.destinations .container { width: min(1540px, calc(100% - 48px)); }
.destinations-layout { display: grid; grid-template-columns: minmax(280px, 30%) minmax(0, 70%); gap: 42px; align-items: stretch; }
.destinations-editorial { position: relative; min-width: 0; padding: 126px 12px 40px 30px; display: flex; flex-direction: column; align-items: flex-start; }
.destinations-editorial .eyebrow { margin-bottom: 18px; color: var(--color-primary); font-size: var(--text-xs); letter-spacing: .18em; }
.destinations-editorial h2 { max-width: 430px; margin: 0; color: var(--color-primary); font: 700 clamp(48px, 4vw, 72px)/1.03 var(--font-primary); letter-spacing: -.035em; }
.destinations-divider { position: relative; width: 250px; height: 22px; margin: 21px 0 20px; display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
.destinations-divider::before, .destinations-divider::after { content: ""; flex: 1; height: 1px; background: var(--color-primary); }
.destinations-divider span { padding: 0 15px; font-size: 17px; transform: rotate(-8deg); }
.destinations-intro { max-width: 390px; margin: 0 0 26px; color: var(--color-black-80); font-size: 15px; line-height: 1.55; }
.destinations-cta { min-height: 48px; padding-inline: 24px; text-transform: uppercase; letter-spacing: .04em; font-size: var(--text-sm); }
.flight-path { position: absolute; top: 6px; left: -58px; width: 410px; height: 132px; color: var(--color-primary); opacity: .46; pointer-events: none; }
.flight-path svg { width: 100%; height: 100%; overflow: visible; }
.flight-path .flight-route { fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-dasharray: 3 7; }
.flight-path .flight-plane { fill: currentColor; stroke: none; }
.contour-lines { position: absolute; left: -70px; bottom: -90px; width: 350px; height: 220px; opacity: .08; border-radius: 48% 52% 45% 55%; background: repeating-radial-gradient(ellipse at 35% 65%, transparent 0 14px, var(--color-primary) 15px 16px); pointer-events: none; }
.destination-grid { display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); grid-template-rows: 1fr .86fr; gap: 14px; min-height: 520px; grid-template-areas: "dubai dubai dubai abu abu abu rak rak rak" "dubai dubai dubai munnar munnar alleppey alleppey wayanad wayanad"; }
.destination-card { position: relative; min-width: 0; min-height: 0; overflow: hidden; border: 1px solid var(--color-primary-08); border-radius: 18px; background: var(--color-primary-08); box-shadow: 0 8px 24px var(--color-black-06); isolation: isolate; transition: transform .35s ease, box-shadow .35s ease; }
.destination-card-dubai { grid-area: dubai; }
.destination-card-abu-dhabi { grid-area: abu; }
.destination-card-rak { grid-area: rak; }
.destination-card-munnar { grid-area: munnar; }
.destination-card-alleppey { grid-area: alleppey; }
.destination-card-wayanad { grid-area: wayanad; }
.destination-image { position: absolute; z-index: -2; inset: 0; background-image: var(--destination-image); background-position: center; background-size: cover; transition: transform .65s ease; }
.destination-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(6,21,112,.85), rgba(6,21,112,.03) 62%); pointer-events: none; }
.destination-card::after { background: linear-gradient(0deg, rgba(6,21,112,.88), rgba(6,21,112,.03) 62%); transition: background .35s; }
.destination-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px var(--color-black-10); }
.destination-card:hover .destination-image { transform: scale(1.045); }
.destination-copy { position: absolute; z-index: 2; left: 20px; bottom: 18px; right: 62px; color: var(--color-white); }
.destination-copy strong, .destination-copy small { display: block; }
.destination-copy strong { color: var(--color-white); font: 700 25px/1.05 var(--font-primary); }
.destination-copy small { margin-top: 7px; color: rgba(255,255,255,.90); font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 7px; }
.location-pin { font-size: 17px; line-height: 1; }
.destination-arrow { position: absolute; z-index: 3; right: 16px; bottom: 16px; width: 42px; height: 42px; border: 1px solid var(--color-primary); border-radius: 50%; color: var(--color-primary); background: rgba(255,255,255,.94); box-shadow: 0 5px 14px var(--color-black-10); display: grid; place-items: center; font-size: 21px; transition: transform .25s, color .25s, background .25s; }
.destination-card .destination-arrow { border-color: rgba(255,255,255,.85); color: var(--color-white); background: rgba(6,21,112,.25); }
.destination-arrow:hover { transform: translateX(3px); color: var(--color-white); background: var(--color-primary); }
.destination-featured { position: absolute; z-index: 3; top: 20px; left: 20px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.80); border-radius: 7px; color: var(--color-white); background: rgba(6,21,112,.55); font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.image-card { position: relative; overflow: hidden; background-position: center; background-size: cover; isolation: isolate; transition: transform .25s, box-shadow .25s; }
.image-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(6,21,112,.92), transparent 58%); }
.image-card:hover { transform: translateY(-6px); box-shadow: 0 18px 32px rgba(0,0,0,.20); }
.card-copy { position: absolute; left: 17px; bottom: 17px; right: 17px; color: white; }
.card-copy strong, .card-copy small { display: block; }
.card-copy strong { font-size: 17px; }
.card-copy small { margin-top: 5px; font-size: 12px; line-height: 1.35; }

.why { background: var(--color-white); border-block: 1px solid var(--color-primary-08); }
.why-grid { display: grid; grid-template-columns: 290px 1fr; gap: 48px; align-items: center; }
.why-intro > p:not(.eyebrow) { margin: 23px 0; font-size: var(--text-base); line-height: 1.65; color: var(--color-black-60); }
.brand-line { width: 110px; height: 2px; margin-top: 16px; background: linear-gradient(90deg, var(--color-primary), transparent); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.feature-card { min-height: 100%; overflow: hidden; border: 1px solid var(--color-primary-08); border-radius: 13px; background: var(--color-white); text-align: left; display: flex; flex-direction: column; box-shadow: 0 8px 26px var(--color-black-06); transition: transform .2s; }
.feature-card:hover { transform: translateY(-5px); }
.feature-card-image { min-height: 160px; background: var(--color-primary-08) center/cover; }
.feature-card-body { padding: 21px 20px 24px; }
.feature-card h3 { margin: 0 0 11px; color: var(--ink); font-size: var(--text-base); }
.feature-card p { margin: 0; color: var(--color-black-60); font-size: var(--text-sm); line-height: 1.65; }

.experiences { color: var(--color-white); background: radial-gradient(circle at 45% 0, rgba(255,255,255,.10), transparent 40%), var(--color-primary); }
.section-heading.light h2 { color: white; }
.experience-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.experience-card { height: 295px; border: 1px solid rgba(255,255,255,.45); border-radius: 13px; }
.experience-card .card-copy { text-align: center; }
.experience-card .card-copy strong { font-size: 18px; }
.experience-card .card-copy small { min-height: 31px; }
.testimonials { background: var(--color-white); }
.testimonial-wrap { display: flex; align-items: center; gap: 18px; }
.testimonial-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { min-height: 210px; padding: 27px; border: 1px solid var(--color-primary-08); border-radius: 14px; background: var(--color-white); box-shadow: 0 8px 26px var(--color-black-06); }
.stars { color: var(--color-primary); letter-spacing: 2px; }
.testimonial-card > p { min-height: 78px; font-size: var(--text-sm); line-height: 1.65; color: var(--color-black-80); }
.person { display: flex; align-items: center; gap: 12px; }
.person > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--blue); font-size: 12px; }
.person strong, .person small { display: block; }
.person strong { color: var(--ink); font-size: var(--text-sm); }
.person small { margin-top: 3px; color: var(--muted); font-size: var(--text-xs); }
.round-arrow { flex: 0 0 42px; width: 42px; height: 42px; border: 1px solid var(--color-primary-15); border-radius: 50%; color: var(--color-primary); background: var(--color-white); cursor: pointer; }

.cta { position: relative; z-index: 2; margin-bottom: -1px; padding: 33px 48px; overflow: hidden; border-radius: 16px 16px 0 0; color: var(--color-white); background: linear-gradient(90deg, rgba(6,21,112,.97), rgba(6,21,112,.88)), url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1500&q=70") center/cover; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta h2 { margin: 0 0 8px; color: white; font-size: var(--text-2xl); line-height: 1.1; }
.cta p { max-width: 500px; margin: 0; color: rgba(255,255,255,.90); font-size: var(--text-base); }
.cta .button-primary { border-color: var(--color-white); background: var(--color-white); color: var(--color-primary); }
.cta-actions { display: flex; gap: 15px; flex-shrink: 0; }
.packages-custom-cta { margin-top: 38px; padding: 36px 40px; border: 1px solid rgba(6,21,112,.08); border-radius: 22px 22px 0 0; color: var(--color-primary); background: linear-gradient(135deg, rgba(238,245,255,.96), var(--color-white)); box-shadow: 0 -10px 42px rgba(6,21,112,.08); display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 36%); align-items: center; gap: 30px; }
.packages-custom-cta::before { content: ""; position: absolute; left: 36px; bottom: -34px; width: 420px; height: 150px; opacity: .08; background: repeating-radial-gradient(ellipse at 45% 100%, transparent 0 14px, var(--color-primary) 15px 16px); pointer-events: none; }
.packages-custom-cta h2 { color: var(--color-primary); }
.packages-custom-cta p { max-width: 570px; color: rgba(0,0,0,.62); }
.packages-custom-cta .cta-actions { margin-top: 24px; flex-wrap: wrap; }
.packages-custom-cta .button-white { border-color: rgba(6,21,112,.13); color: var(--color-primary); background: var(--color-white); }
.packages-custom-cta .button-primary { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-white); }
.cta-visual { min-height: 230px; border: 1px solid rgba(255,255,255,.8); border-radius: 18px; background: linear-gradient(180deg, rgba(6,21,112,.06), rgba(6,21,112,.14)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=78") center/cover; box-shadow: 0 18px 42px rgba(6,21,112,.14); }

.footer { padding: 58px 0 24px; color: var(--color-white); background: var(--color-primary); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr) minmax(0, 1fr); gap: clamp(32px, 4vw, 72px); align-items: start; }
.footer-brand, .footer-quick-column, .footer-services-column, .footer-destinations-column, .footer-contact-column { min-width: 0; }
.footer h3 { margin: 8px 0 22px; color: white; font-size: var(--text-base); line-height: 1.2; }
.footer h4 { margin: 13px 0 5px; color: white; font-size: var(--text-sm); }
.footer p, .footer li, .footer a { font-size: var(--text-sm); line-height: 1.65; overflow-wrap: anywhere; }
.footer p { color: rgba(255,255,255,.80); }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 5px; }
.footer-contact-column li { margin-bottom: 11px; }
.footer-brand img { width: 105px; height: 82px; object-fit: contain; }
.footer-brand > p { max-width: 330px; }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 12px; }
.footer-bottom { margin-top: 40px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; color: rgba(255,255,255,.75); font-size: var(--text-xs); }

.package-list-header { position: relative; z-index: 20; color: var(--color-primary); background: rgba(255,255,255,.96); box-shadow: 0 10px 34px rgba(6,21,112,.08); }
.package-list-header .nav-wrap { height: 112px; }
.package-list-header .brand img { filter: none; }
.package-list-header .main-nav a { color: var(--color-primary); }
.package-list-header .main-nav a::after { background: #2f6bff; height: 4px; bottom: 2px; }
.package-list-header .button-primary { border-color: var(--color-primary); background: var(--color-primary); color: var(--color-white); }
.package-list-header .menu-toggle span { background: var(--color-primary); }
.packages-hero { position: relative; overflow: hidden; padding: 48px 0 54px; color: var(--color-primary); background: radial-gradient(circle at 74% 18%, rgba(47,107,255,.10), transparent 32%), linear-gradient(180deg, #f8fbff 0%, #ffffff 58%, #f5f9ff 100%); }
.packages-hero::before { content: ""; position: absolute; left: -8%; right: 42%; bottom: -120px; height: 280px; opacity: .26; background: repeating-radial-gradient(ellipse at 50% 100%, transparent 0 15px, rgba(47,107,255,.22) 16px 17px); transform: rotate(3deg); pointer-events: none; }
.packages-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr); gap: clamp(36px, 4vw, 66px); align-items: center; }
.packages-hero-copy { min-width: 0; }
.packages-hero .eyebrow { position: relative; width: max-content; color: #2f6bff; font-size: 13px; letter-spacing: .08em; }
.airline-mark { position: absolute; right: -54px; top: -9px; color: #2f6bff; font-size: 28px; transform: rotate(-22deg); }
.airline-mark::before { content: ""; position: absolute; right: 27px; top: 20px; width: 94px; height: 34px; border-top: 1px dashed rgba(47,107,255,.55); border-radius: 50%; transform: rotate(7deg); }
.packages-hero h1 { max-width: 620px; margin: 18px 0 0; color: var(--color-primary); font-size: clamp(46px, 4.9vw, 74px); line-height: .98; letter-spacing: -.035em; }
.packages-heading-line { width: 190px; height: 5px; margin: 20px 0 24px; border-radius: 999px; background: linear-gradient(90deg, #2f6bff, rgba(47,107,255,.08)); transform: skewX(-18deg); }
.packages-hero p:not(.eyebrow) { max-width: 620px; margin: 0; color: rgba(0,0,0,.72); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.65; }
.packages-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }
.packages-hero-actions .button { min-height: 56px; min-width: 190px; border-radius: 11px; font-size: 16px; }
.button-outline { border: 1px solid #2f6bff; background: var(--color-white); color: var(--color-primary); }
.flights-page { min-height: auto; padding-top: 64px; padding-bottom: clamp(52px, 4.8vw, 72px); background: linear-gradient(180deg, #f8fbff, var(--color-white) 58%, rgba(6,21,112,.035)); }
.flights-layout { display: grid; grid-template-columns: minmax(320px, .78fr) minmax(560px, 1.22fr); gap: clamp(28px, 3.8vw, 58px); align-items: start; }
.flights-copy { min-width: 0; }
.flights-copy h1 { max-width: 650px; margin: 0 0 18px; color: var(--color-primary); font-size: clamp(40px, 4.5vw, 68px); line-height: 1; letter-spacing: 0; }
.flights-copy p:not(.eyebrow) { max-width: 560px; margin: 0 0 26px; color: rgba(0,0,0,.66); font-size: 1rem; line-height: 1.7; }
.flight-copy-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.flight-support-card { min-width: 0; padding: 20px; border: 1px solid rgba(6,21,112,.10); border-radius: 20px; background: linear-gradient(180deg, rgba(255,255,255,.96), #f7faff); box-shadow: 0 14px 34px rgba(6,21,112,.08); }
.flight-support-head { display: grid; gap: 7px; margin-bottom: 16px; padding-bottom: 15px; border-bottom: 1px solid rgba(6,21,112,.09); color: var(--color-primary); }
.flight-support-head span { width: max-content; min-height: 26px; padding: 0 10px; border-radius: 999px; background: rgba(47,107,255,.10); display: inline-flex; align-items: center; font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.flight-support-head strong { max-width: 320px; font-size: clamp(18px, 1.45vw, 23px); line-height: 1.18; }
.flight-support-grid { display: grid; gap: 10px; }
.flight-support-grid article { min-width: 0; padding: 14px; border: 1px solid rgba(6,21,112,.08); border-radius: 14px; background: var(--color-white); display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 10px 12px; align-items: start; }
.flight-support-grid article > span { width: 34px; height: 34px; border-radius: 11px; background: var(--color-primary); color: var(--color-white); display: grid; place-items: center; font-size: 11px; font-weight: 900; }
.flight-support-grid strong { color: var(--color-primary); font-size: 14px; line-height: 1.2; }
.flight-support-grid small { grid-column: 2; margin-top: -7px; color: rgba(0,0,0,.58); font-size: 12px; line-height: 1.45; }
.flight-form { min-width: 0; padding: 28px; border: 1px solid var(--color-primary-08); border-radius: 22px; background: var(--color-white); box-shadow: 0 18px 50px rgba(6,21,112,.10); display: grid; gap: 16px; }
.flight-form .form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.flight-form label { min-width: 0; display: grid; gap: 7px; color: var(--color-primary); font-size: 13px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.flight-form input, .flight-form select, .flight-form textarea { width: 100%; min-width: 0; border: 1px solid rgba(6,21,112,.13); border-radius: 12px; background: var(--color-white); color: var(--color-black); outline: 0; font-size: 15px; font-weight: 600; letter-spacing: 0; text-transform: none; }
.flight-form input, .flight-form select { height: 52px; padding: 0 15px; }
.flight-form textarea { min-height: 118px; padding: 15px; resize: vertical; }
.flight-form-assist { display: grid; gap: 10px; padding: 14px; border: 1px solid rgba(6,21,112,.09); border-radius: 14px; background: #f8fbff; }
.flight-form-assist > span { color: var(--color-primary); font-size: 12px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.flight-form-assist > div { display: flex; flex-wrap: wrap; gap: 8px; }
.flight-form-assist small { min-height: 32px; padding: 0 11px; border: 1px solid rgba(6,21,112,.10); border-radius: 999px; background: var(--color-white); color: rgba(6,21,112,.82); display: inline-flex; align-items: center; font-size: 12px; font-weight: 800; }
.flight-form-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-hero { padding: 72px 0 56px; background: radial-gradient(circle at 82% 20%, rgba(47,107,255,.12), transparent 30%), linear-gradient(180deg, #f8fbff 0%, #ffffff 72%); color: var(--color-primary); }
.contact-hero-inner { max-width: 980px; }
.contact-hero h1 { margin: 10px 0 14px; color: var(--color-primary); font-size: clamp(42px, 5vw, 72px); line-height: 1; letter-spacing: 0; }
.contact-hero-subtitle { margin: 0 0 12px; color: var(--color-primary); font-size: clamp(20px, 2vw, 28px); font-weight: 800; line-height: 1.25; }
.contact-hero-copy { max-width: 760px; margin: 0; color: rgba(0,0,0,.66); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.7; }
.contact-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-main-section { padding-top: 28px; background: var(--color-white); }
.contact-main-grid { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr); gap: clamp(24px, 4vw, 48px); align-items: start; }
.contact-form-card,
.contact-office-panel,
.contact-quick-grid article,
.contact-location-card { border: 1px solid rgba(6,21,112,.09); border-radius: 22px; background: var(--color-white); box-shadow: 0 16px 42px rgba(6,21,112,.08); }
.contact-form-card { display: grid; gap: 16px; padding: clamp(22px, 3vw, 30px); }
.contact-card-head { display: grid; gap: 8px; margin-bottom: 4px; color: var(--color-primary); }
.contact-card-head span { width: max-content; min-height: 28px; padding: 0 11px; border-radius: 999px; background: rgba(47,107,255,.10); display: inline-flex; align-items: center; font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.contact-card-head h2 { margin: 0; color: var(--color-primary); font-size: clamp(25px, 2.4vw, 36px); line-height: 1.1; }
.contact-card-head p { margin: 0; color: rgba(0,0,0,.62); line-height: 1.6; }
.contact-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form-card label { min-width: 0; display: grid; gap: 7px; color: var(--color-primary); font-size: 12px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea { width: 100%; min-width: 0; border: 1px solid rgba(6,21,112,.13); border-radius: 12px; background: var(--color-white); color: var(--color-black); outline: 0; font-size: 15px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.contact-form-card input,
.contact-form-card select { height: 52px; padding: 0 15px; }
.contact-form-card textarea { min-height: 126px; padding: 15px; resize: vertical; }
.contact-form-success { margin: 0; padding: 12px 14px; border: 1px solid rgba(37,211,102,.24); border-radius: 12px; background: rgba(37,211,102,.08); color: #116b35; font-weight: 800; }
.contact-form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-office-panel { padding: clamp(22px, 3vw, 28px); }
.contact-office-grid { display: grid; gap: 14px; margin-top: 18px; }
.contact-office-card { padding: 18px; border: 1px solid rgba(6,21,112,.09); border-radius: 16px; background: linear-gradient(180deg, #ffffff, #f8fbff); }
.contact-office-card h3 { margin: 0 0 14px; color: var(--color-primary); font-size: 21px; }
.contact-office-card ul { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.contact-office-card li { min-width: 0; display: grid; gap: 2px; }
.contact-office-card small { color: rgba(6,21,112,.58); font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.contact-office-card a,
.contact-office-card strong { color: rgba(0,0,0,.78); font-size: 15px; line-height: 1.35; overflow-wrap: anywhere; }
.contact-quick-section { padding-top: 34px; background: linear-gradient(180deg, #ffffff, #f8fbff); }
.contact-quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.contact-quick-grid article { min-height: 100%; padding: 22px; }
.contact-quick-grid span { width: 42px; height: 42px; margin-bottom: 16px; border-radius: 14px; background: var(--color-primary); color: var(--color-white); display: grid; place-items: center; font-size: 12px; font-weight: 900; }
.contact-quick-grid span svg { width: 22px; height: 22px; display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-quick-grid h3 { margin: 0 0 9px; color: var(--color-primary); font-size: 19px; line-height: 1.2; }
.contact-quick-grid p { margin: 0; color: rgba(0,0,0,.62); font-size: 14px; line-height: 1.6; }
.contact-location-section { padding: 20px 0 64px; background: #f8fbff; }
.contact-location-card { padding: clamp(24px, 3vw, 34px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; background: linear-gradient(135deg, rgba(6,21,112,.98), rgba(47,107,255,.84)); color: var(--color-white); }
.contact-location-card .eyebrow,
.contact-location-card h2 { color: var(--color-white); }
.contact-location-card h2 { margin: 0 0 10px; font-size: clamp(26px, 3vw, 42px); line-height: 1.12; }
.contact-location-card p:not(.eyebrow) { max-width: 740px; margin: 0; color: rgba(255,255,255,.84); line-height: 1.65; }
.experiences-hero { position: relative; overflow: hidden; padding: 58px 0 64px; color: var(--color-primary); background: radial-gradient(circle at 78% 16%, rgba(47,107,255,.12), transparent 30%), linear-gradient(180deg, #f8fbff 0%, #ffffff 62%, #f4f8ff 100%); }
.experiences-hero::before { content: ""; position: absolute; left: -8%; bottom: -120px; width: 54%; height: 270px; opacity: .18; background: repeating-radial-gradient(ellipse at 50% 100%, transparent 0 15px, rgba(47,107,255,.34) 16px 17px); pointer-events: none; }
.experiences-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr); align-items: center; gap: clamp(34px, 5vw, 76px); }
.experiences-hero-copy h1 { max-width: 680px; margin: 14px 0 18px; color: var(--color-primary); font-size: clamp(42px, 4.8vw, 70px); line-height: 1.02; letter-spacing: 0; }
.experiences-hero-copy p:not(.eyebrow) { max-width: 640px; margin: 0; color: rgba(0,0,0,.68); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.7; }
.experiences-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.experiences-hero-actions .button { min-height: 54px; min-width: 184px; border-radius: 12px; }
.experiences-hero-visual { position: relative; min-height: 420px; }
.experience-hero-card { position: absolute; border: 1px solid rgba(255,255,255,.82); background: var(--color-white); box-shadow: 0 24px 58px rgba(6,21,112,.15); }
.experience-hero-card-main { inset: 0 8% 0 8%; border-radius: 26px; background: linear-gradient(180deg, rgba(6,21,112,.08), rgba(6,21,112,.16)), url("https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1300&q=84") center/cover; }
.experience-hero-card-small { z-index: 2; min-width: 190px; min-height: 76px; padding: 18px 20px; border-radius: 18px; color: var(--color-primary); display: flex; align-items: center; font-weight: 900; }
.experience-hero-card-one { left: 0; top: 12%; }
.experience-hero-card-two { right: 0; bottom: 12%; }
.experience-categories { background: var(--color-white); }
.experience-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.experience-category-card { min-height: 100%; padding: 26px; border: 1px solid rgba(6,21,112,.09); border-radius: 20px; background: var(--color-white); box-shadow: 0 16px 42px rgba(6,21,112,.08); display: flex; flex-direction: column; align-items: flex-start; }
.experience-icon { width: 48px; height: 48px; margin-bottom: 18px; border-radius: 14px; background: rgba(47,107,255,.10); color: var(--color-primary); display: grid; place-items: center; }
.experience-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.experience-category-card h3 { margin: 0 0 10px; color: var(--color-primary); font-size: clamp(20px, 1.7vw, 26px); line-height: 1.15; }
.experience-category-card p { margin: 0; color: rgba(0,0,0,.64); font-size: 15px; line-height: 1.65; }
.experience-category-card a { margin-top: auto; padding-top: 20px; color: var(--color-primary); font-weight: 900; text-decoration: none; }
.experience-service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; width: 100%; margin: 16px 0 18px; padding: 0; list-style: none; }
.experience-service-list li { position: relative; padding-left: 14px; color: rgba(0,0,0,.68); font-size: 13px; line-height: 1.35; }
.experience-service-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); box-shadow: 0 0 0 4px rgba(47,107,255,.08); }
.popular-experience-ideas { background: linear-gradient(180deg, #f8fbff, #ffffff); }
.compact-heading { margin-bottom: 26px; }
.experience-pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.experience-pill-grid span { min-height: 44px; padding: 0 17px; border: 1px solid rgba(6,21,112,.10); border-radius: 999px; background: var(--color-white); color: var(--color-primary); box-shadow: 0 8px 22px rgba(6,21,112,.06); display: inline-flex; align-items: center; font-size: 14px; font-weight: 800; }
.experience-steps { background: var(--color-white); }
.experience-step-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.experience-step-grid::before { content: ""; position: absolute; top: 31px; left: 8%; right: 8%; height: 1px; background: rgba(6,21,112,.12); }
.experience-step-grid article { position: relative; z-index: 1; padding: 22px; border: 1px solid rgba(6,21,112,.08); border-radius: 18px; background: var(--color-white); box-shadow: 0 12px 34px rgba(6,21,112,.07); }
.experience-step-grid span { width: 42px; height: 42px; margin-bottom: 16px; border-radius: 50%; background: var(--color-primary); color: var(--color-white); display: grid; place-items: center; font-size: 13px; font-weight: 900; }
.experience-step-grid h3 { margin: 0 0 9px; color: var(--color-primary); font-size: 19px; line-height: 1.2; }
.experience-step-grid p { margin: 0; color: rgba(0,0,0,.63); font-size: 14px; line-height: 1.6; }
.mice-highlight { color: var(--color-primary); background: linear-gradient(135deg, rgba(238,245,255,.94), #ffffff); }
.mice-highlight-inner { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.mice-highlight h2 { margin: 0 0 16px; color: var(--color-primary); font-size: clamp(34px, 3.3vw, 52px); line-height: 1.05; }
.mice-highlight p:not(.eyebrow) { max-width: 650px; margin: 0 0 24px; color: rgba(0,0,0,.66); line-height: 1.7; }
.mice-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.mice-feature-grid article { min-height: 118px; padding: 22px; border: 1px solid rgba(6,21,112,.09); border-radius: 18px; background: var(--color-white); box-shadow: 0 14px 36px rgba(6,21,112,.08); color: var(--color-primary); display: flex; align-items: center; font-size: 18px; font-weight: 900; }
.experiences-final-cta { padding-top: 44px; background: var(--color-white); }
.experiences-final-box { padding: 34px 38px; border: 1px solid rgba(6,21,112,.09); border-radius: 24px; background: linear-gradient(135deg, rgba(6,21,112,.98), rgba(47,107,255,.86)); color: var(--color-white); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 28px; box-shadow: 0 20px 54px rgba(6,21,112,.17); }
.experiences-final-box h2 { margin: 0 0 10px; color: var(--color-white); font-size: clamp(28px, 3vw, 42px); line-height: 1.1; }
.experiences-final-box p { max-width: 650px; margin: 0; color: rgba(255,255,255,.86); line-height: 1.65; }
.experiences-final-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.experiences-final-actions .button-outline { border-color: rgba(255,255,255,.6); background: transparent; color: var(--color-white); }
.packages-hero-visual { position: relative; min-height: 450px; }
.packages-main-image { position: absolute; right: 6%; top: 6%; width: min(72%, 580px); height: 390px; border-radius: 24px; background: url("https://images.unsplash.com/photo-1519451241324-20b4ea2c4220?auto=format&fit=crop&w=1400&q=88") center/cover; box-shadow: 0 24px 58px rgba(6,21,112,.16); }
.hero-pattern-panel { position: absolute; right: 0; top: 15%; width: 52%; height: 340px; border-radius: 30px; background: rgba(47,107,255,.11); transform: translate(18px, 12px); }
.hero-pattern-dots { position: absolute; left: 18%; top: 55%; width: 140px; height: 140px; opacity: .35; background-image: radial-gradient(#2f6bff 2px, transparent 2px); background-size: 18px 18px; }
.floating-destination { position: absolute; z-index: 3; min-width: 230px; padding: 12px 17px 12px 12px; border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 18px 38px rgba(6,21,112,.15); display: grid; grid-template-columns: 88px 1fr; gap: 15px; align-items: center; }
.floating-destination img { width: 88px; height: 88px; border-radius: 12px; object-fit: cover; }
.floating-destination strong { display: block; color: var(--color-primary); font-size: 19px; line-height: 1.1; }
.floating-destination span { display: block; margin-top: 7px; color: rgba(0,0,0,.66); font-size: 13px; font-weight: 700; }
.floating-thailand { left: 0; top: 13%; }
.floating-singapore { right: 0; top: 40%; }
.floating-kenya { left: 5%; bottom: 8%; }
.packages-trust-pill { position: absolute; right: 3%; bottom: 0; z-index: 3; min-height: 48px; padding: 0 26px; border: 1px solid rgba(47,107,255,.18); border-radius: 999px; background: rgba(238,245,255,.94); color: var(--color-primary); box-shadow: 0 12px 26px rgba(6,21,112,.13); display: inline-flex; align-items: center; font-size: 14px; font-weight: 800; }
.package-list-section { padding-top: 44px; padding-bottom: 60px; }
.package-list-section .section-heading { margin-bottom: 0; }
.package-list-section .section-heading .eyebrow { margin-bottom: 8px; }
.package-list-section .section-heading h2 { font-size: clamp(42px, 5vw, 72px); line-height: 1.05; }
.package-list-section .section-subtitle { max-width: 720px; margin-top: 10px; line-height: 1.55; }

@media (max-width: 1280px) {
  .footer-grid { grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr)); }
  .booking-card {
    width: min(calc(100% - 64px), 1120px);
  }
}

@media (max-width: 1080px) {
  .search-form-row,
  .search-form-row.active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .search-form-row .button {
    width: 100%;
    grid-column: 1 / -1;
  }
  .hero-controls {
    bottom: 285px;
  }
}

@media (max-width: 1120px) {
  .site-header .container { width: min(100% - 40px, 980px); }
  .nav-wrap { height: 92px; }
  .brand img { width: 98px; height: 72px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: absolute; top: 86px; left: 20px; right: 20px; padding: 18px; border-radius: 14px; background: rgba(6,21,112,.98); display: none; flex-direction: column; align-items: stretch; gap: 3px; white-space: normal; box-shadow: 0 18px 40px rgba(0,0,0,.16); }
  .site-header.header-solid .main-nav { top: 86px; }
  .package-list-header .main-nav a { color: var(--color-white); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; }
  .main-nav .mobile-nav-cta { display: inline-flex; min-height: 48px; margin-top: 8px; align-items: center; justify-content: center; border-radius: 10px; background: var(--color-white); color: var(--color-primary); font-weight: 800; }
  .main-nav .mobile-nav-cta::after { display: none; }
  .nav-cta { display: none; }
}

@media (max-width: 1050px) {
  .package-list-header .nav-wrap { height: 92px; }
  .packages-hero { padding: 44px 0 56px; }
  .flights-layout { grid-template-columns: 1fr; }
  .flights-copy { max-width: 760px; }
  .flight-support-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flight-support-grid article { grid-template-columns: 1fr; }
  .flight-support-grid small { grid-column: auto; margin-top: -2px; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .contact-office-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visa-page-hero-grid,
  .visa-enquiry-grid { grid-template-columns: 1fr; }
  .visa-page-visual { min-height: 360px; }
  .visa-service-grid,
  .visa-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experiences-hero-inner { grid-template-columns: 1fr; }
  .experiences-hero-visual { min-height: 360px; }
  .experience-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-step-grid::before { display: none; }
  .mice-highlight-inner { grid-template-columns: 1fr; }
  .packages-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .packages-hero h1 { font-size: clamp(48px, 8vw, 72px); }
  .packages-hero-visual { min-height: 470px; }
  .packages-main-image { right: 4%; width: 78%; height: 380px; }
  .floating-thailand { left: 0; top: 8%; }
  .floating-singapore { right: 0; top: 40%; }
  .floating-kenya { left: 3%; bottom: 2%; }
  .packages-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finder-head { grid-template-columns: 1fr; align-items: start; }
  .filter-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .clear-filters { justify-content: flex-start; padding-inline: 16px; }
  .quick-filter-row { grid-template-columns: 1fr; }
  .sort-control { width: 100%; padding-left: 0; padding-top: 16px; border-left: 0; border-top: 1px solid var(--color-primary-08); justify-content: space-between; }
  .sort-select { flex: 0 0 210px; }
  .destinations-layout { grid-template-columns: 1fr; gap: 32px; }
  .destinations-editorial { padding: 65px 10px 0; align-items: center; text-align: center; }
  .destinations-editorial h2 { max-width: none; }
  .flight-path { left: 5%; }
  .contour-lines { display: none; }
  .destination-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 330px 230px 230px 230px; grid-template-areas: "dubai dubai" "abu rak" "munnar alleppey" "wayanad wayanad"; }
  .why-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card { min-height: 100%; }
  .experience-grid { grid-template-columns: repeat(3, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-custom-cta { grid-template-columns: 1fr; }
  .cta-visual { min-height: 240px; }
  .travel-style-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visa-layout { grid-template-columns: 1fr; gap: 36px; }
  .visa-copy { max-width: 720px; }
}

@media (max-width: 820px) {
  .reveal { transform: translateY(22px); transition-duration: .55s; }
  .reveal-image { transform: scale(.985) translateY(18px); transition-duration: .6s; }
  .container { width: min(100% - 32px, 680px); }
  .section { padding: 65px 0; }
  .site-header .container { width: calc(100% - 28px); }
  .nav-wrap { height: 78px; }
  .brand img { width: 83px; height: 65px; }
  .main-nav { top: 75px; left: 16px; right: 16px; padding: 20px; border-radius: 12px; }
  .packages-hero { padding: 36px 0 50px; }
  .flights-page { padding-top: 44px; padding-bottom: 40px; }
  .experiences-hero { padding: 42px 0 52px; }
  .experiences-hero-copy h1 { font-size: clamp(36px, 9vw, 52px); }
  .experiences-hero-actions .button { width: 100%; min-width: 0; }
  .experiences-hero-visual { min-height: 280px; }
  .experience-hero-card-main { inset: 0; border-radius: 22px; }
  .experience-hero-card-small { min-width: 145px; min-height: 58px; padding: 12px 14px; border-radius: 14px; font-size: 13px; }
  .experience-category-grid { grid-template-columns: 1fr; gap: 16px; }
  .experience-category-card { padding: 22px; border-radius: 18px; }
  .experience-pill-grid { gap: 9px; }
  .experience-pill-grid span { min-height: 40px; padding-inline: 14px; font-size: 13px; }
  .experience-step-grid { grid-template-columns: 1fr; }
  .mice-feature-grid { grid-template-columns: 1fr; }
  .experiences-final-box { grid-template-columns: 1fr; padding: 28px 22px; border-radius: 20px; }
  .experiences-final-actions { justify-content: stretch; flex-direction: column; }
  .experiences-final-actions .button { width: 100%; }
  .packages-hero h1 { font-size: clamp(38px, 10.5vw, 46px); }
  .packages-heading-line { width: 132px; height: 4px; margin: 16px 0 20px; }
  .packages-hero p:not(.eyebrow) { font-size: 15px; line-height: 1.58; }
  .packages-hero-actions { gap: 10px; margin-top: 22px; }
  .packages-hero-actions .button { width: 100%; min-width: 0; min-height: 54px; }
  .flight-copy-actions .button { width: 100%; }
  .flight-support-card { padding: 16px; border-radius: 18px; }
  .flight-support-grid { grid-template-columns: 1fr; }
  .flight-support-grid article { grid-template-columns: 34px minmax(0, 1fr); }
  .flight-support-grid small { grid-column: 2; margin-top: -7px; }
  .flight-form .form-row { grid-template-columns: 1fr; }
  .flight-form { padding: 20px; border-radius: 18px; }
  .flight-form-assist > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flight-form-assist small { justify-content: center; text-align: center; }
  .flight-form-actions { flex-direction: column; }
  .flight-form-actions .button { width: 100%; }
  .contact-hero { padding: 46px 0 38px; }
  .contact-hero-actions,
  .contact-form-actions { flex-direction: column; }
  .contact-hero-actions .button,
  .contact-form-actions .button { width: 100%; }
  .contact-form-row,
  .contact-office-grid,
  .contact-quick-grid,
  .contact-location-card { grid-template-columns: 1fr; }
  .contact-location-card .button { width: 100%; }
  .visa-page-hero { padding: 42px 0 48px; }
  .visa-page-copy h1 { font-size: clamp(40px, 12vw, 56px); }
  .visa-page-visual { min-height: 280px; border-radius: 22px; }
  .visa-page-note { left: 14px; right: 14px; bottom: 14px; padding: 15px; }
  .visa-service-grid,
  .visa-process-grid,
  .visa-enquiry-form { grid-template-columns: 1fr; }
  .visa-page-section,
  .visa-process-section,
  .visa-enquiry-section { padding: 42px 0; }
  .visa-form-actions .button,
  .visa-page-actions .button,
  .visa-contact-strip a { width: 100%; justify-content: center; }
  .visa-services { padding: 56px 0; }
  .visa-flight-path { display: none; }
  .visa-layout { gap: 32px; }
  .visa-copy h2 { font-size: clamp(35px, 8.4vw, 42px); }
  .packages-hero-visual { min-height: 0; display: flex; flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .hero-pattern-dots { display: none; }
  .packages-main-image { position: relative; z-index: 2; top: auto; right: auto; width: 100%; height: 230px; border-radius: 20px; }
  .hero-pattern-panel { right: -8px; top: 26px; width: 88%; height: 210px; border-radius: 22px; }
  .floating-destination { position: relative; z-index: 3; left: auto; right: auto; top: auto; bottom: auto; min-width: 0; width: calc((100% - 20px) / 3); grid-template-columns: 1fr; gap: 7px; padding: 8px; border-radius: 14px; text-align: center; }
  .floating-destination img { width: 100%; height: 58px; border-radius: 10px; }
  .floating-destination strong { font-size: 13px; }
  .floating-destination span { margin-top: 3px; font-size: 12px; line-height: 1.15; }
  .packages-trust-pill { position: relative; z-index: 3; right: auto; bottom: auto; width: 100%; min-height: 46px; margin-top: 0; justify-content: center; padding-inline: 14px; text-align: center; font-size: 12px; }
  .packages-trust-strip { padding: 14px 0 0; }
  .packages-trust-grid { gap: 10px; }
  .packages-trust-grid article { min-height: 76px; padding: 13px; grid-template-columns: 38px 1fr; }
  .trust-strip-icon { width: 38px; height: 38px; font-size: 12px; }
  .package-decor, .floating-region-chip { opacity: .035; }
  .package-decor-flight, .floating-region-chip { display: none; }
  .package-filter-panel { margin: 26px 0 30px; padding: 16px; border-radius: 18px; }
  .finder-head { gap: 14px; padding-bottom: 14px; }
  .finder-head h3 { font-size: 20px; }
  .package-search input { min-height: 48px; }
  .filter-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .filter-controls { display: none; }
  .filter-controls.is-open { display: block; }
  .filter-row { grid-template-columns: 1fr; gap: 10px; }
  .filter-select, .sort-select, .clear-filters, .filter-chip { min-height: 48px; font-size: 14px; }
  .filter-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; }
  .filter-chip { min-width: max-content; scroll-snap-align: start; }
  .sort-control { align-items: stretch; flex-direction: column; gap: 10px; }
  .package-results-row { align-items: flex-start; flex-direction: column; }
  .package-results-row .sort-control { width: 100%; padding-top: 0; border-top: 0; }
  .sort-select { width: 100%; flex-basis: auto; }
  .package-card { border-radius: 22px; }
  .package-card:hover { transform: none; }
  .package-card-image { height: 220px; }
  .package-card-body { padding: 24px 22px 26px; }
  .package-card h3 { font-size: 28px; }
  .package-action-row { grid-template-columns: 1fr 1fr; }
  .package-enquire-link { text-align: center; }
  .hero { min-height: 78vh; padding: 120px 0 40px; overflow: hidden; }
  .hero-content,
  .hero-content[data-align="right"] { max-width: 620px; margin-left: 0; padding-bottom: 0; }
  .hero-controls { position: relative; left: auto; bottom: auto; transform: none; width: max-content; margin: 24px auto 0; }
  h1 { font-size: 49px; }
  .booking-card { position: relative; left: auto; bottom: auto; transform: none; width: calc(100% - 32px); max-width: 680px; margin: 28px auto 0; padding: 22px; border-radius: 22px; grid-template-columns: 1fr; gap: 14px; }
  .booking-card.search-panel { padding: 18px; }
  .search-tabs { width: 100%; margin: 0 0 16px; }
  .search-tab { flex: 1; min-height: 42px; padding: 0 12px; }
  .search-form-row,
  .search-form-row.active { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .search-form-row .button { width: 100%; min-width: 0; grid-column: 1 / -1; }
  .stats-luxury-section { padding: 14px 14px; }
  .stats-luxury-box { min-height: 0; border-radius: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-luxury-item { padding: 15px 10px 14px; gap: 4px; }
  .stats-luxury-item:nth-of-type(1), .stats-luxury-item:nth-of-type(3) { border-right: 1px solid rgba(255,255,255,.22); }
  .stats-luxury-item:nth-of-type(3), .stats-luxury-item:nth-of-type(4) { border-top: 1px solid rgba(255,255,255,.22); }
  .stats-icon-circle { width: 42px; height: 42px; flex-basis: 42px; }
  .stats-icon-circle svg { width: 22px; height: 22px; }
  .stats-value { font-size: 25px; }
  .stats-value-wide { font-size: 21px; }
  .stats-label { font-size: 12px; }
  .stats-divider { display: none; }
  .stats-silhouette { width: 60%; opacity: .055; }
  .testimonial-wrap > .round-arrow { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
  .packages-custom-cta { display: grid; margin-top: 34px; padding: 30px 24px; gap: 24px; }
  .packages-custom-cta::before { width: 280px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { order: 1; }
  .footer-quick-column { order: 2; }
  .footer-services-column { order: 3; }
  .footer-reachout,
  .footer-contact { order: 4; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .hero { min-height: 82vh; padding: 104px 0 30px; display: flex; flex-direction: column; justify-content: flex-end; }
  .hero-slide:first-child img { object-position: center; }
  .hero-shade { background: linear-gradient(180deg, rgba(6,21,112,.52) 0%, rgba(6,21,112,.27) 34%, rgba(6,21,112,.78) 100%); }
  .hero[data-align="right"] .hero-shade { background: linear-gradient(180deg, rgba(6,21,112,.52) 0%, rgba(6,21,112,.27) 34%, rgba(6,21,112,.78) 100%); }
  .hero-controls { margin-top: 18px; }
  .hero-arrow { width: 34px; height: 34px; }
  h1 { font-size: 38px; line-height: 1.03; }
  .hero-copy { margin: 14px 0; font-size: 13px; line-height: 1.5; }
  .hero-actions .button { width: 100%; min-height: 46px; }
  .hero-badges { gap: 7px; }
  .hero-badges span { padding: 8px 10px; font-size: 12px; }
  .booking-card { width: calc(100% - 32px); margin-top: 20px; padding: 16px; border-radius: 22px; gap: 10px; }
  .booking-card.search-panel { padding: 14px; }
  .search-tabs { padding: 5px; border-radius: 14px; gap: 5px; }
  .search-tab { min-height: 40px; font-size: 13px; border-radius: 10px; }
  .search-form-row,
  .search-form-row.active { grid-template-columns: 1fr; gap: 10px; }
  .booking-card label > span { margin-bottom: 6px; }
  .booking-card .button { width: 100%; min-height: 54px; }
  .field { height: 54px; }
  .stats-luxury-section { padding: 12px 10px; }
  .stats-luxury-item { padding: 13px 7px 12px; }
  .stats-icon-circle { width: 38px; height: 38px; flex-basis: 38px; }
  .stats-value { font-size: 23px; }
  .stats-value-wide { font-size: 19px; }
  .stats-label { font-size: 11px; white-space: normal; }
  .stats-ornament { width: 34px; }
  .destinations .container { width: calc(100% - 28px); }
  .destinations-editorial { padding: 45px 0 0; align-items: flex-start; text-align: left; }
  .destinations-editorial h2 { font-size: 43px; }
  .destinations-divider { width: 220px; }
  .destinations-cta { width: 100%; }
  .flight-path { top: -20px; left: -40px; width: 280px; opacity: .30; }
  .destination-grid { display: flex; flex-direction: column; gap: 12px; overflow: visible; padding: 0; }
  .destination-card { min-height: 260px; }
  .destination-card-dubai { min-height: 290px; }
  .destination-card-munnar, .destination-card-alleppey { min-height: 210px; }
  .destination-card-wayanad { min-height: 210px; }
  .destination-copy strong { font-size: 23px; }
  .experience-grid { grid-template-columns: repeat(6, 78vw); overflow-x: auto; padding: 5px 2px 18px; scroll-snap-type: x mandatory; }
  .experience-card { height: 390px; scroll-snap-align: start; }
  .why-grid { gap: 32px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { min-height: 100%; }
  .feature-card:last-child { grid-column: 1 / -1; }
  .travel-style-grid { grid-template-columns: 1fr; }
  .travel-style-card { min-height: 0; }
  .travel-style-image { min-height: 200px; }
  .travel-style-body { min-height: 0; padding: 22px; }
  .packages-trust-grid { grid-template-columns: 1fr; }
  .visa-card-grid { grid-template-columns: 1fr; gap: 18px; }
  .visa-card-image { height: 145px; }
  .visa-card-body { padding: 20px; }
  .visa-card-grid h3 { font-size: 21px; }
  .packages-trust-grid small { display: none; }
  .package-list-section { padding-top: 34px; padding-bottom: 48px; }
  .package-list-section .section-heading h2 { font-size: clamp(34px, 10vw, 42px); }
  .package-list-section .section-subtitle { font-size: 14px; }
  .package-results-row .sort-control { gap: 8px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card h3 { font-size: 28px; }
  .package-price strong { font-size: 38px; }
  .cta { width: calc(100% - 28px); padding: 28px 22px; border-radius: 14px 14px 0 0; }
  .packages-custom-cta { margin-top: 30px; padding: 26px 20px; }
  .cta-visual { min-height: 190px; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand > p { max-width: none; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* Desktop slide copy: the general container safeguard intentionally makes most
   page containers fluid, but the hero copy needs a narrower column so it can
   occupy the empty side of each image. */
@media (min-width: 821px) {
  .hero .hero-content {
    width: min(620px, calc(100% - 96px));
    max-width: 620px;
    margin-left: clamp(42px, 5.2vw, 104px);
    margin-right: auto;
  }

  .hero[data-align="right"] .hero-content {
    margin-left: auto;
    margin-right: clamp(42px, 5.2vw, 104px);
  }
}

@media (max-width: 480px) {
  .package-action-row { grid-template-columns: 1fr; }
}

/* Shared homepage navbar across inner pages */
.flights-page,
.package-list-section {
  padding-top: 64px;
}
.site-header:not(.package-list-header) .brand img {
  filter: none;
}
@media (max-width: 1120px) {
  .flights-page,
  .package-list-section {
    padding-top: 54px;
  }
}
@media (max-width: 640px) {
  .flights-page,
  .package-list-section {
    padding-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .reveal,
  .reveal-image,
  .package-card,
  .package-card-image img,
  .button,
  .package-view-link,
  .package-enquire-link,
  .destination-card,
  .travel-style-card,
  .feature-card {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Global typography refinement */
body {
  font-weight: var(--font-weight-regular);
}

p,
li,
input,
select,
textarea {
  font-weight: var(--font-weight-regular);
}

h1,
h2,
h3,
.section-heading h2,
.why-intro h2,
.destinations-editorial h2,
.visa-copy h2,
.cta h2 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-heading);
  letter-spacing: -.02em;
}

h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
}

.section-heading h2,
.why-intro h2,
.destinations-editorial h2,
.visa-copy h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.main-nav {
  font-size: clamp(15px, .82vw, 16px);
  font-weight: var(--font-weight-medium);
}

.button,
.nav-cta,
.search-tab,
.booking-card .button,
.package-view-link,
.package-enquire-link,
.cruise-view-button,
.filter-select,
.sort-select,
.clear-filters,
.filter-chip {
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow,
.package-search span,
.cruise-block-label,
.cruise-price small,
.package-price small,
.booking-card label > span,
.flight-form label {
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: .08em;
}

.search-tab {
  font-size: 15px;
}

.field input,
.package-search input,
.flight-form input,
.flight-form select,
.flight-form textarea {
  font-weight: var(--font-weight-regular);
}

.travel-style-card h3,
.cruise-title-row h3,
.cruise-card-title h3,
.package-card h3,
.visa-card-grid h3 {
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
}

.travel-style-card p,
.cruise-meta,
.package-card-meta,
.visa-card-grid p,
.section-subtitle,
.hero-copy {
  font-weight: var(--font-weight-regular);
}

.cruise-duration-pill,
.cruise-title-row > span,
.cruise-month-row strong,
.cruise-month-row b,
.cruise-route-tags span,
.package-badge,
.package-highlight-row span,
.filter-chip span,
.trust-strip-icon,
.floating-region-chip,
.package-results-row {
  font-weight: var(--font-weight-semibold);
}

.cruise-price strong,
.package-price strong {
  font-weight: var(--font-weight-bold);
}

.footer .footer-heading,
.footer .footer-follow-heading,
.site-footer .footer-heading,
.site-footer .footer-column > h3,
.site-footer .footer-follow-heading {
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: var(--font-weight-bold);
}

.site-footer .footer-description,
.site-footer .footer-brand > p,
.site-footer .footer-links li,
.site-footer .footer-links a,
.site-footer .footer-contact-list small {
  font-size: clamp(15px, 1vw, 16px);
  font-weight: var(--font-weight-regular);
  line-height: 1.7;
}

/* Final responsive scroll guard */
html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
  overflow-y: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: #f2f6ff;
}

html::-webkit-scrollbar-thumb {
  border: 3px solid #f2f6ff;
  border-radius: 999px;
  background: rgba(6, 21, 112, .48);
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 21, 112, .68);
}

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

body,
main,
.site-shell,
.page-shell,
.container {
  max-width: 100%;
}

main,
.section,
.packages-hero,
.packages-trust-strip,
.package-list-section,
.flights-page,
.experiences-page,
.visa-services {
  overflow-y: visible;
}

img,
video,
picture,
canvas {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

:where(a, button, .button, .package-card, .visa-card, .travel-style-card, .destination-card, .experience-card, .cruise-package-card) {
  -webkit-tap-highlight-color: transparent;
}

:where(.button, .nav-cta, .package-view-link, .package-enquire-link, .filter-chip, .destination-card, .experience-card, .package-card, .visa-card, .travel-style-card, .cruise-package-card) {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

:target {
  scroll-margin-top: 96px;
}
/* Shared nav additions */
.nav-cta,
.main-nav .mobile-nav-cta {
  display: none !important;
}

.nav-currency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 6px 10px;
  border: 1px solid rgba(12, 28, 128, .14);
  border-radius: 12px;
  color: var(--color-primary);
  font-weight: 800;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font: inherit;
  font-weight: inherit;
  padding: 16px 0;
  cursor: pointer;
  position: relative;
}

.site-header.header-solid .nav-dropdown-toggle,
.package-list-header .nav-dropdown-toggle {
  color: var(--color-primary);
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: width .25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.active .nav-dropdown-toggle::after,
.nav-dropdown-toggle.active::after {
  width: 100%;
}

.nav-dropdown-toggle b {
  font-size: 14px;
  line-height: 1;
  transition: transform .25s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle b,
.nav-dropdown:hover .nav-dropdown-toggle b {
  transform: rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 40;
  width: min(260px, 86vw);
  padding: 10px;
  border: 1px solid rgba(12, 28, 128, .1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(5, 13, 55, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .25s ease, transform .25s ease;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  white-space: normal;
}

.main-nav .nav-dropdown-menu a::after {
  display: none;
}

.main-nav .nav-dropdown-menu a:hover {
  background: rgba(47, 107, 255, .08);
  color: #2f4fff;
  transform: translateX(3px);
}

.nav-currency span {
  font-size: 12px;
  opacity: .68;
}

.nav-currency select {
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font: inherit;
  font-weight: 900;
  outline: 0;
}

.partner-login-button {
  min-height: 42px;
  border: 1px solid rgba(12, 28, 128, .16);
  border-radius: 12px;
  background: rgba(12, 28, 128, .06);
  color: var(--color-primary);
  font: inherit;
  font-weight: 900;
  padding: 8px 14px;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.partner-login-button:hover {
  transform: translateY(-1px);
  background: rgba(12, 28, 128, .1);
  border-color: rgba(12, 28, 128, .25);
}

.partner-login-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 13, 55, .46);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.partner-login-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.partner-login-dialog {
  position: relative;
  width: min(420px, 100%);
  border-radius: 20px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(5, 13, 55, .24);
  color: var(--color-primary);
}

.partner-login-dialog span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(12, 28, 128, .6);
}

.partner-login-dialog h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.partner-login-dialog p {
  margin: 0;
  color: #626b7c;
  line-height: 1.55;
}

.partner-login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(12, 28, 128, .08);
  color: var(--color-primary);
  cursor: pointer;
}

@media (max-width: 1120px) {
  .main-nav.open .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .main-nav.open .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 11px 12px;
    color: var(--color-white);
  }

  .main-nav.open .nav-dropdown-toggle::after {
    display: none;
  }

  .main-nav.open .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height .25s ease, padding .25s ease;
  }

  .main-nav.open .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 420px;
    padding: 4px 0 8px 12px;
  }

  .main-nav.open .nav-dropdown-menu a {
    padding: 9px 12px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
  }

  .main-nav.open .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
  }

  .main-nav.open .nav-currency,
  .main-nav.open .partner-login-button {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav.open .partner-login-button {
    justify-content: center;
  }
}

/* Final dropdown color guard */
.site-header .main-nav .nav-dropdown-toggle,
.site-header.header-solid .main-nav .nav-dropdown-toggle,
.package-list-header .main-nav .nav-dropdown-toggle {
  color: var(--color-white);
}

.site-header .main-nav .nav-dropdown-menu a,
.site-header.header-solid .main-nav .nav-dropdown-menu a,
.package-list-header .main-nav .nav-dropdown-menu a {
  color: var(--color-primary) !important;
}

.site-header .main-nav .nav-dropdown-menu a:hover,
.site-header.header-solid .main-nav .nav-dropdown-menu a:hover,
.package-list-header .main-nav .nav-dropdown-menu a:hover {
  color: #2f4fff !important;
}

.nav-dropdown-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .72);
  outline-offset: 6px;
}

@media (max-width: 1120px) {
  .site-header .main-nav.open .nav-dropdown-menu a,
  .site-header.header-solid .main-nav.open .nav-dropdown-menu a,
  .package-list-header .main-nav.open .nav-dropdown-menu a {
    color: rgba(255, 255, 255, .92) !important;
  }
}

/* Feather scroll and package visibility polish */
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.package-grid .package-card,
.package-grid .package-card.reveal,
.package-grid .package-card .reveal-image {
  opacity: 1 !important;
  transform: none !important;
}

.package-grid .package-card {
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), box-shadow .42s cubic-bezier(.22, 1, .36, 1), border-color .3s ease;
}

.filter-chips,
.experience-grid,
.info-tabs {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    transform: translateY(16px);
    transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
  }

  .reveal-image {
    transform: scale(.99) translateY(12px);
    transition: opacity .95s cubic-bezier(.22, 1, .36, 1), transform .95s cubic-bezier(.22, 1, .36, 1);
  }

  .button,
  .package-card,
  .destination-card,
  .experience-card,
  .cruise-package-card {
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  }
}

/* Clean white navbar controls */
.site-header .main-nav .nav-currency,
.site-header.header-solid .main-nav .nav-currency,
.package-list-header .main-nav .nav-currency,
.site-header .main-nav .partner-login-button,
.site-header.header-solid .main-nav .partner-login-button,
.package-list-header .main-nav .partner-login-button {
  min-height: auto;
  padding: 16px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-white);
  font-size: clamp(14px, .82vw, 18px);
  font-weight: 700;
  line-height: 1.2;
}

.site-header .main-nav .nav-currency {
  gap: 8px;
}

.site-header .main-nav .nav-currency span {
  color: currentColor;
  opacity: 1;
  font-size: inherit;
  font-weight: 700;
}

.site-header .main-nav .nav-currency select {
  color: currentColor;
  background: transparent;
  font-size: inherit;
  font-weight: 800;
  padding-right: 2px;
}

.site-header .main-nav .nav-currency select option {
  color: var(--color-primary);
}

.site-header .main-nav .partner-login-button {
  cursor: pointer;
}

.site-header .main-nav .partner-login-button:hover,
.site-header .main-nav .nav-currency:hover {
  transform: none;
  color: var(--color-white);
  background: transparent;
}

.site-header .main-nav .partner-login-button::after,
.site-header .main-nav .nav-currency::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 6px;
  border-radius: 999px;
  background: currentColor;
  transition: width .25s ease;
}

.site-header .main-nav .partner-login-button:hover::after,
.site-header .main-nav .nav-currency:hover::after {
  width: 100%;
}

@media (max-width: 1120px) {
  .site-header .main-nav.open .nav-currency,
  .site-header.header-solid .main-nav.open .nav-currency,
  .package-list-header .main-nav.open .nav-currency,
  .site-header .main-nav.open .partner-login-button,
  .site-header.header-solid .main-nav.open .partner-login-button,
  .package-list-header .main-nav.open .partner-login-button {
    min-height: 44px;
    padding: 11px 12px;
    color: var(--color-white);
    justify-content: space-between;
  }

  .site-header .main-nav.open .partner-login-button {
    justify-content: flex-start;
    text-align: left;
  }

  .site-header .main-nav.open .partner-login-button::after,
  .site-header .main-nav.open .nav-currency::after {
    display: none;
  }
}

/* Global Flyo navbar */
.site-header.flyo-global-navbar {
  position: relative;
  z-index: 80;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(6, 21, 112, .98), rgba(6, 21, 112, .76)),
    var(--color-primary);
  box-shadow: 0 10px 28px rgba(6, 21, 112, .14);
}

.site-header.flyo-global-navbar .container.nav-wrap {
  width: min(100% - 96px, 1880px);
  height: 96px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}

.site-header.flyo-global-navbar .brand img {
  width: clamp(96px, 7.4vw, 124px);
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.site-header.flyo-global-navbar .main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.35vw, 28px);
  color: var(--color-white);
  font-size: clamp(14px, .88vw, 17px);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.site-header.flyo-global-navbar .main-nav > a,
.site-header.flyo-global-navbar .nav-dropdown-toggle,
.site-header.flyo-global-navbar .nav-currency,
.site-header.flyo-global-navbar .partner-login-button {
  position: relative;
  min-height: auto;
  padding: 16px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-white);
  font: inherit;
  font-weight: 700;
}

.site-header.flyo-global-navbar .main-nav > a::after,
.site-header.flyo-global-navbar .nav-dropdown-toggle::after,
.site-header.flyo-global-navbar .nav-currency::after,
.site-header.flyo-global-navbar .partner-login-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 3px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition: width .25s ease;
}

.site-header.flyo-global-navbar .main-nav > a:hover::after,
.site-header.flyo-global-navbar .main-nav > a.active::after,
.site-header.flyo-global-navbar .nav-dropdown:hover .nav-dropdown-toggle::after,
.site-header.flyo-global-navbar .nav-dropdown.active .nav-dropdown-toggle::after,
.site-header.flyo-global-navbar .nav-currency:hover::after,
.site-header.flyo-global-navbar .partner-login-button:hover::after {
  width: 100%;
}

.site-header.flyo-global-navbar .nav-currency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header.flyo-global-navbar .nav-currency span,
.site-header.flyo-global-navbar .nav-currency select {
  color: currentColor;
  font-size: inherit;
  font-weight: 700;
  opacity: 1;
}

.site-header.flyo-global-navbar .nav-currency select {
  border: 0;
  background: transparent;
  outline: 0;
  cursor: pointer;
}

.site-header.flyo-global-navbar .nav-currency select option {
  color: var(--color-primary);
}

.site-header.flyo-global-navbar .partner-login-button {
  cursor: pointer;
  text-align: left;
}

.site-header.flyo-global-navbar .nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 100;
}

.site-header.flyo-global-navbar .nav-dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
  pointer-events: auto;
}

.site-header.flyo-global-navbar .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.site-header.flyo-global-navbar .nav-dropdown-toggle b {
  font-size: 14px;
  line-height: 1;
  transition: transform .25s ease;
}

.site-header.flyo-global-navbar .nav-dropdown.is-open .nav-dropdown-toggle b,
.site-header.flyo-global-navbar .nav-dropdown:hover .nav-dropdown-toggle b {
  transform: rotate(45deg);
}

.site-header.flyo-global-navbar .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 120;
  width: min(260px, 86vw);
  margin-top: 0;
  padding: 18px 10px 10px;
  border: 1px solid rgba(12, 28, 128, .1);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 22px 58px rgba(5, 13, 55, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.site-header.flyo-global-navbar .nav-dropdown.is-open .nav-dropdown-menu,
.site-header.flyo-global-navbar .nav-dropdown:hover .nav-dropdown-menu,
.site-header.flyo-global-navbar .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header.flyo-global-navbar .nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--color-primary) !important;
  font-size: 14px;
  font-weight: 800;
  white-space: normal;
}

.site-header.flyo-global-navbar .nav-dropdown-menu a::after {
  display: none;
}

.site-header.flyo-global-navbar .nav-dropdown-menu a:hover {
  background: rgba(47, 107, 255, .08);
  color: #2f4fff !important;
  transform: translateX(3px);
}

.site-header.flyo-global-navbar .menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 10px;
}

.site-header.flyo-global-navbar .menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--color-white);
}

.country-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
  padding: 8px 0 2px;
}

.country-filter-chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(6, 21, 112, .14);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(6, 21, 112, .04);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.country-filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(6, 21, 112, .28);
  box-shadow: 0 12px 26px rgba(6, 21, 112, .08);
}

.country-filter-chip.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.package-empty-state {
  grid-column: 1 / -1;
  padding: 34px 24px;
  border: 1px solid rgba(6, 21, 112, .12);
  border-radius: 18px;
  background: var(--color-white);
  color: var(--color-primary);
  text-align: center;
  box-shadow: 0 16px 42px rgba(6, 21, 112, .06);
}

.package-empty-state h3 {
  margin: 0 0 8px;
}

.package-empty-state p {
  margin: 0;
  color: var(--color-black-60);
}

/* Homepage quick search */
.booking-card.search-panel,
.quick-search-row,
.quick-field {
  overflow: visible;
}

.quick-search-holidays {
  grid-template-columns: minmax(190px, 1.35fr) repeat(4, minmax(120px, .95fr)) minmax(150px, auto);
}

.quick-search-flights {
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) repeat(4, minmax(112px, .82fr)) minmax(140px, auto);
}

.quick-field {
  position: relative;
  display: block;
}

.quick-control,
.quick-guest-trigger,
.quick-select-trigger {
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
  border-color: rgba(6, 21, 112, .14);
  background: var(--color-white);
  text-align: left;
}

.quick-guest-trigger,
.quick-select-trigger {
  color: rgba(0, 0, 0, .62);
  font-size: 14px;
  line-height: 1.2;
}

.quick-select-trigger::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .7;
}

.quick-menu,
.quick-popover {
  position: absolute;
  z-index: 35;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  display: none;
  max-height: 260px;
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(6, 21, 112, .12);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 18px 36px rgba(6, 21, 112, .16);
}

.quick-field.is-open .quick-menu,
.quick-field.is-open .quick-popover {
  display: block;
}

.quick-option {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  cursor: pointer;
}

.quick-option:hover,
.quick-option:focus,
.quick-option.is-selected {
  outline: 0;
  background: rgba(6, 21, 112, .08);
}

.quick-option small,
.quick-option-empty {
  color: rgba(0, 0, 0, .58);
  font-size: 12px;
}

.quick-option-empty {
  padding: 12px 10px;
}

.guest-popover {
  min-width: 280px;
  right: auto;
}

.guest-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 6px;
}

.guest-counter-row + .guest-counter-row {
  border-top: 1px solid rgba(6, 21, 112, .08);
}

.guest-counter-row strong,
.guest-counter-row small {
  display: block;
}

.guest-counter-row strong {
  color: var(--color-primary);
  line-height: 1.2;
}

.guest-counter-row small {
  color: rgba(0, 0, 0, .58);
  font-size: 12px;
}

.guest-counter-controls {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.guest-counter-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(6, 21, 112, .16);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 900;
  cursor: pointer;
}

.guest-counter-controls span {
  min-width: 20px;
  color: var(--color-primary);
  font-weight: 800;
  text-align: center;
}

.trip-mode-toggle {
  min-height: 54px;
  padding: 5px;
  border: 1px solid rgba(6, 21, 112, .14);
  border-radius: 11px;
  background: var(--color-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.trip-mode-toggle button {
  min-width: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.trip-mode-toggle button.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.quick-field.is-hidden {
  display: none;
}

.quick-error {
  min-height: 16px;
  margin-top: 4px;
  color: #b42318;
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.quick-field.has-error .field,
.quick-field.has-error .trip-mode-toggle {
  border-color: #d92d20;
}

.package-empty-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1120px) {
  .site-header.flyo-global-navbar .container.nav-wrap {
    width: min(100% - 32px, 1880px);
    height: 82px;
  }

  .site-header.flyo-global-navbar .brand img {
    width: 96px;
    max-height: 68px;
  }

  .site-header.flyo-global-navbar .menu-toggle {
    display: block;
  }

  .site-header.flyo-global-navbar .main-nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(6, 21, 112, .98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
    white-space: normal;
  }

  .site-header.flyo-global-navbar .main-nav.open {
    display: flex;
  }

  .site-header.flyo-global-navbar .main-nav > a,
  .site-header.flyo-global-navbar .nav-dropdown-toggle,
  .site-header.flyo-global-navbar .nav-currency,
  .site-header.flyo-global-navbar .partner-login-button {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    justify-content: space-between;
  }

  .site-header.flyo-global-navbar .partner-login-button {
    justify-content: flex-start;
  }

  .site-header.flyo-global-navbar .main-nav > a::after,
  .site-header.flyo-global-navbar .nav-dropdown-toggle::after,
  .site-header.flyo-global-navbar .nav-currency::after,
  .site-header.flyo-global-navbar .partner-login-button::after {
    display: none;
  }

  .site-header.flyo-global-navbar .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .site-header.flyo-global-navbar .nav-dropdown::after {
    display: none;
  }

  .site-header.flyo-global-navbar .nav-dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 0 0 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height .25s ease, padding .25s ease;
  }

  .site-header.flyo-global-navbar .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 360px;
    padding: 4px 0 8px 12px;
  }

  .site-header.flyo-global-navbar .nav-dropdown-menu a {
    color: rgba(255, 255, 255, .92) !important;
    padding: 9px 12px;
  }
}

@media (max-width: 760px) {
  .country-filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .country-filter-chip {
    flex: 0 0 auto;
  }
}

/* Windows scroll performance guard */
html {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: clip;
  overflow-y: auto;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: clip !important;
  overflow-y: visible !important;
  overscroll-behavior-y: auto;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body::-webkit-scrollbar {
  width: initial;
  height: initial;
}

main,
.site-shell,
.page-shell,
.app,
#root,
.section,
.packages-hero,
.packages-trust-strip,
.package-list-section,
.package-detail-hero,
.package-section,
.gallery-section,
.reviews-section,
.faq-section,
.package-options,
.flights-page,
.experiences-page,
.visa-services {
  overflow-y: visible !important;
}

:where(.site-header, .site-header.flyo-global-navbar, .booking-card, .search-tabs, .nav-dropdown-menu, .partner-login-dialog, .package-card, .visa-card, .destination-card, .experience-card, .cruise-package-card, .package-empty-state) {
  box-shadow: 0 10px 24px rgba(6, 21, 112, .08);
}

:where(.hero-badges span, .hero-arrow, .booking-card, .search-tabs, .site-header, .site-header.flyo-global-navbar, .whatsapp-office-backdrop) {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.hero-badges span,
.hero-arrow {
  background-color: rgba(6, 21, 112, .58);
}

.whatsapp-office-backdrop {
  background: rgba(5, 21, 42, .58);
}

.hero-slide {
  transform: none;
  transition: opacity .65s ease, visibility .65s ease;
}

.hero-slide.active {
  transform: none;
}

.reveal,
.reveal-image {
  transform: translate3d(0, 14px, 0);
  transition: opacity .52s ease, transform .52s ease;
  will-change: auto;
}

.reveal-image {
  transform: translate3d(0, 10px, 0);
}

.reveal.is-visible,
.reveal-image.is-visible {
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

:where(.button, .nav-cta, .search-tab, .package-card, .visa-card, .travel-style-card, .destination-card, .experience-card, .cruise-package-card, .country-filter-chip, .partner-login-button) {
  transition-property: color, background-color, border-color, opacity, transform, box-shadow;
  transition-duration: .22s;
  transition-timing-function: ease;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile homepage hero refinement */
@media (max-width: 820px) {
  .hero {
    min-height: 0;
    padding: 32px 0 34px;
    display: block;
    overflow: hidden;
  }

  .hero-slider {
    height: min(58vh, 430px);
    min-height: 390px;
  }

  .hero-slide img {
    object-position: center top;
  }

  .hero-shade {
    height: min(58vh, 430px);
    min-height: 390px;
    background:
      linear-gradient(180deg, rgba(6,21,112,.25) 0%, rgba(6,21,112,.36) 38%, rgba(6,21,112,.90) 100%),
      linear-gradient(90deg, rgba(6,21,112,.70), rgba(6,21,112,.12));
  }

  .hero[data-align="right"] .hero-shade {
    background:
      linear-gradient(180deg, rgba(6,21,112,.25) 0%, rgba(6,21,112,.36) 38%, rgba(6,21,112,.90) 100%),
      linear-gradient(90deg, rgba(6,21,112,.70), rgba(6,21,112,.12));
  }

  .hero-content,
  .hero-content[data-align="right"] {
    min-height: min(58vh, 430px);
    padding-top: clamp(74px, 17vh, 118px);
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .hero[data-align="right"] .hero-content {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content .eyebrow {
    margin-bottom: 9px;
    font-size: 11px;
    letter-spacing: .10em;
  }

  .hero-content h1 {
    max-width: 12ch;
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.02;
    letter-spacing: 0;
  }

  .hero-copy {
    max-width: 34ch;
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 18px 0 12px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 12px;
    border-radius: 11px;
    font-size: 13px;
    text-align: center;
  }

  .hero-badges {
    gap: 7px;
  }

  .hero-badges span {
    padding: 7px 9px;
    font-size: 11px;
    line-height: 1.1;
  }

  .hero-controls {
    position: relative;
    z-index: 9;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    transform: none;
    width: max-content;
    max-width: 100%;
    margin: 12px 0 0 auto;
    gap: 9px;
  }

  .hero-dots button {
    width: 7px;
    height: 7px;
  }

  .hero-dots button.active {
    width: 21px;
  }

  .booking-card,
  .booking-card.search-panel {
    position: relative;
    z-index: 10;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(calc(100% - 28px), 620px);
    margin: 16px auto 0;
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(6, 21, 112, .12);
  }

  .booking-card.reveal,
  .booking-card.reveal.is-visible {
    transform: none;
  }

  .search-tabs {
    margin: 0 0 12px;
  }

  .search-form-row,
  .search-form-row.active {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .search-form-row label:first-child {
    grid-column: 1 / -1;
  }

  .search-form-row .button {
    grid-column: 1 / -1;
    min-height: 50px;
  }

  .field {
    height: 50px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 28px;
  }

  .hero-slider,
  .hero-shade {
    height: 520px;
    min-height: 520px;
  }

  .hero-content,
  .hero-content[data-align="right"] {
    min-height: 520px;
    padding-top: 86px;
    padding-bottom: 54px;
  }

  .hero-content h1 {
    max-width: 11ch;
    font-size: clamp(32px, 10vw, 40px);
  }

  .hero-copy {
    max-width: 31ch;
    font-size: 13px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .hero-badges span:nth-child(3) {
    display: none;
  }

  .hero-controls {
    top: auto;
    right: 16px;
    margin-top: 12px;
  }

  .booking-card,
  .booking-card.search-panel {
    width: calc(100% - 24px);
    margin-top: 14px;
    padding: 12px;
    border-radius: 16px;
  }

  .search-tabs {
    padding: 4px;
    gap: 4px;
  }

  .search-tab {
    min-height: 38px;
    font-size: 12px;
  }

  .search-form-row,
  .search-form-row.active {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .booking-card label > span {
    margin-bottom: 5px;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .field {
    height: 48px;
    padding-inline: 11px;
  }

  .field input {
    font-size: 13px;
  }
}

/* Functional package filters */
.package-filter-panel {
  position: relative;
  z-index: 12;
  overflow: visible;
}

.package-search-field {
  position: relative;
}

.package-search-field input {
  padding-right: 46px;
}

.package-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 21, 112, .08);
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.filter-dropdown {
  position: relative;
  min-width: 0;
}

.filter-dropdown .filter-select {
  width: 100%;
  justify-content: flex-start;
}

.filter-select-label {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-dropdown.is-open .filter-chevron {
  transform: rotate(180deg);
}

.filter-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 8px);
  left: 0;
  width: min(280px, 84vw);
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(6, 21, 112, .12);
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: 0 18px 42px rgba(6, 21, 112, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.filter-dropdown.is-open .filter-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.filter-option {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--color-primary);
  display: block;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-option:hover,
.filter-option:focus-visible,
.filter-option.is-selected {
  outline: 0;
  background: rgba(6, 21, 112, .08);
}

.filter-option.is-selected {
  font-weight: 900;
}

.package-empty-state .button {
  margin-top: 16px;
}

@media (max-width: 820px) {
  .filter-menu {
    position: relative;
    top: auto;
    display: none;
    width: 100%;
    max-height: 220px;
    margin-top: 7px;
  }

  .filter-dropdown.is-open .filter-menu {
    display: block;
  }
}

/* Final quick-search responsive overrides */
.quick-search-row.active {
  align-items: start;
}

.quick-search-holidays.active {
  grid-template-columns: minmax(190px, 1.35fr) repeat(4, minmax(120px, .95fr)) minmax(150px, auto);
}

.quick-search-flights.active {
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 1fr) repeat(4, minmax(112px, .82fr)) minmax(140px, auto);
}

.package-empty-actions .button {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .quick-search-holidays.active,
  .quick-search-flights.active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-search-row.active > .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .quick-search-holidays.active,
  .quick-search-flights.active {
    grid-template-columns: 1fr;
  }

  .quick-search-row label:first-child,
  .quick-search-row .button {
    grid-column: auto;
  }

  .quick-menu,
  .quick-popover {
    position: relative;
    top: auto;
    width: 100%;
    max-height: 230px;
    margin-top: 7px;
    box-shadow: 0 12px 24px rgba(6, 21, 112, .12);
  }

  .guest-popover {
    min-width: 0;
  }

  .trip-mode-toggle {
    min-height: 50px;
  }

  .package-empty-actions {
    flex-direction: column;
  }

  .package-empty-actions .button {
    width: 100%;
  }
}
