/* FILE: /htdocs/www.visitcayman.ky/assets/style.css */

/* =========================
    GOOGLE FONTS (Theme Typography)
    Headings: Quicksand / Poppins
    Body: Nunito / Inter
  ========================= */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500;600;700;800&family=Nunito:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap");

/* (Optional fallback) Quicksand 500 direct font-face (like your inspector) */
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/quicksand/v37/6xKtdSZaM9iE8KbpRA_hJFQNcOM.woff2)
    format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

/* Utility font classes (match your inspector) */
.font-display {
  font-family:
    "Quicksand",
    "Poppins",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}
.font-sans {
  font-family:
    "Nunito",
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

/* =========================
    THEME (Soft Neumorphism + Tropical Gradient)
  ========================= */
:root {
  /* Core palette */
  --vc-teal: #2ec4b6;
  --vc-coral: #ff7e67;
  --vc-blue: #4cc9f0;
  --vc-yellow: #ffd166;

  /* Backgrounds */
  --vc-bg: #f8fafc;
  --vc-card: #f0f3f9;
  --vc-soft: #ffffff;
  --vc-alt: #eef3f8;

  /* Text */
  --vc-ink: #2d3748;
  --vc-text: #2d3748;
  --vc-text2: #4a5568;
  --vc-muted: #718096;
  --vc-light: #a0aec0;
  --vc-white: #ffffff;

  /* Compatibility (your old var name) */
  --vc-primary: var(--vc-teal);
  --vc-dark: #0f172a; /* minimal use */

  /* Gradients */
  --vc-grad-main: linear-gradient(135deg, #2ec4b6, #4cc9f0);
  --vc-grad-sunset: linear-gradient(135deg, #ff7e67, #ffd166);
  --vc-grad-tropical: linear-gradient(135deg, #4cc9f0, #2ec4b6, #ffd166);
  --vc-grad-bg: linear-gradient(180deg, #f8fafc, #eef3f8);

  /* Radii */
  --vc-radius: 22px;
  --vc-radius-lg: 28px;

  /* Neumorphism shadows */
  --vc-shadow-neu:
    16px 16px 32px rgba(45, 55, 72, 0.12),
    -16px -16px 32px rgba(255, 255, 255, 0.9);
  --vc-shadow-neu-soft:
    12px 12px 24px rgba(45, 55, 72, 0.1),
    -12px -12px 24px rgba(255, 255, 255, 0.85);
  --vc-shadow-neu-sm:
    10px 10px 20px rgba(45, 55, 72, 0.1),
    -10px -10px 20px rgba(255, 255, 255, 0.85);
  --vc-shadow-float: 0 20px 60px rgba(45, 55, 72, 0.14);

  --vc-border: 1px solid rgba(45, 55, 72, 0.08);
  --vc-border-soft: 1px solid rgba(45, 55, 72, 0.06);

  --vc-container: 100%;
  --vc-pill: 999px;
}

/* VX Theme vars (kept for your existing classes) */
:root {
  --vx-cream: var(--vc-bg);
  --vx-card: var(--vc-soft);
  --vx-line: rgba(45, 55, 72, 0.1);
  --vx-softline: rgba(45, 55, 72, 0.06);
  --vx-shadow: var(--vc-shadow-neu-soft);
  --vx-shadow2: var(--vc-shadow-neu-sm);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* =========================
    RESET
  ========================= */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:host,
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family:
    "Nunito",
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family:
    "Nunito",
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--vc-ink);
  background: var(--vc-grad-bg);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none !important;
}
button {
  font-family: inherit;
}

/* =========================
    SCROLLBAR (Tropical)
  ========================= */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(46, 196, 182, 0.08);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(46, 196, 182, 0.65),
    rgba(76, 201, 240, 0.65)
  );
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(46, 196, 182, 0.85),
    rgba(76, 201, 240, 0.85)
  );
}

/* =========================
   UTILITIES
========================= */
.vc-container {
  width: min(var(--vc-container), calc(100% - 40px));
  margin-inline: auto;
}
.vc-accent {
  color: var(--vc-teal);
}
.vc-section {
  padding: 78px 0;
}
.vc-section--soft {
  background: var(--vc-grad-bg);
}

/* Improve nav item look */
.vc-nav__link {
  padding: 10px 14px;
  font-size: 14px;
}
.vc-nav__link i {
  color: var(--vc-teal);
}

.vc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.vc-title {
  font-family: "Quicksand", "Poppins", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--vc-text);
}
.vc-sub {
  margin: 0;
  font-size: 16px;
  color: var(--vc-text2);
  line-height: 1.65;
  max-width: 720px;
}
.vc-link {
  color: var(--vc-blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.vc-link i {
  transition: transform 0.2s ease;
}
.vc-link:hover i {
  transform: translateX(3px);
}

/* Gradient text helper (optional) */
.vc-grad-text {
  background: var(--vc-grad-tropical);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* =========================
   BUTTONS (Neumorphism)
========================= */
.vc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--vc-pill);
  padding: 12px 18px;
  font-weight: 800;
  border: var(--vc-border);
  background: var(--vc-card);
  box-shadow: var(--vc-shadow-neu-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
  color: var(--vc-text);
}
.vc-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--vc-shadow-neu);
}
.vc-btn--primary {
  background: var(--vc-grad-main);
  color: #ffffff;
  border-color: rgba(46, 196, 182, 0.25);
  box-shadow: 0 18px 45px rgba(46, 196, 182, 0.22);
}
.vc-btn--primary:hover {
  box-shadow: 0 22px 60px rgba(46, 196, 182, 0.28);
}
.vc-btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--vc-text);
  border: var(--vc-border);
  box-shadow: var(--vc-shadow-neu-sm);
}
.vc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.78);
}
.vc-btn--block {
  width: 100%;
}

/* =========================
   HEADER / NAVBAR (Light Glass + Neumorphism)
========================= */

body.vc-menu-open {
  overflow: hidden;
}

.vc-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100000;
}

.vc-skip:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: #111827;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

/* Header */
.vc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(248, 250, 252, 0.74);
  border-bottom: 1px solid rgba(45, 55, 72, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.vc-header.is-solid {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
}

.vc-header__wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vc-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.vc-brand img {
  display: block;
  width: 260px;
  height: auto;
  max-width: 100%;
}

.vc-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.14);
  border: 1px solid rgba(46, 196, 182, 0.22);
  display: grid;
  place-items: center;
  box-shadow:
    10px 10px 20px rgba(45, 55, 72, 0.08),
    -10px -10px 20px rgba(255, 255, 255, 0.9);
  color: var(--vc-teal);
}

.vc-brand__mark i {
  transform: rotate(-20deg);
}

.vc-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.vc-brand__name {
  font-family: "Quicksand", "Poppins", system-ui, sans-serif;
  font-weight: 800;
  color: var(--vc-text);
  font-size: 20px;
  letter-spacing: -0.01em;
}

.vc-brand__tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(74, 85, 104, 0.75);
  margin-top: 3px;
}

/* Desktop nav */
.vc-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vc-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vc-text2);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.vc-nav__link i {
  color: var(--vc-teal);
}

.vc-nav__link:hover,
.vc-nav__link.is-active {
  background: rgba(46, 196, 182, 0.12);
  transform: translateY(-1px);
  color: var(--vc-text);
}

/* Optional alternate header menu */
.vc-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.vc-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vc-text2);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.vc-menu__link i {
  color: var(--vc-teal);
}

.vc-menu__link:hover,
.vc-menu__link.is-active {
  background: rgba(76, 201, 240, 0.12);
  transform: translateY(-1px);
  color: var(--vc-text);
}

/* Header actions */
.vc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vc-actions .vc-btn--ghost {
  border-radius: 999px;
  padding: 11px 14px;
}

.vc-actions .vc-btn--primary {
  padding: 11px 16px;
}

/* Burger */
.vc-burger {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: var(--vc-border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--vc-shadow-neu-sm);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.vc-burger span {
  width: 18px;
  height: 2px;
  background: var(--vc-text2);
  display: block;
  border-radius: 999px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.vc-burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.vc-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.vc-burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.vc-mobile {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.vc-mobile.is-open {
  opacity: 1;
  visibility: visible;
  display: block !important;
  pointer-events: auto;
}

.vc-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 55, 72, 0.28);
  cursor: pointer;
}

.vc-mobile__panel {
  position: relative;
  z-index: 2;
  width: min(460px, calc(100% - 32px));
  margin: 14px auto;
  border-radius: 20px;
  background: var(--vc-soft);
  border: var(--vc-border-soft);
  box-shadow: var(--vc-shadow-float);
  overflow: hidden;
  transform: translateY(-12px) scale(0.98);
  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.vc-mobile.is-open .vc-mobile__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.vc-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(45, 55, 72, 0.08);
}

.vc-mobile__title {
  font-weight: 900;
  color: var(--vc-text);
}

.vc-mobile__close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: var(--vc-border);
  background: var(--vc-card);
  box-shadow: var(--vc-shadow-neu-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.vc-mobile__links {
  padding: 12px;
}

.vc-mobile__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  font-weight: 800;
  color: var(--vc-text);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.vc-mobile__link i {
  color: var(--vc-teal);
}

.vc-mobile__link:hover,
.vc-mobile__link.is-active {
  background: rgba(46, 196, 182, 0.12);
  color: var(--vc-text);
}

.vc-mobile__cta {
  padding: 16px;
  border-top: 1px solid rgba(45, 55, 72, 0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .vc-nav {
    display: none !important;
  }

  .vc-burger {
    display: inline-flex !important;
  }

  .vc-brand img {
    width: 210px;
  }
}

@media (min-width: 1025px) {
  .vc-mobile {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .vc-header__wrap {
    height: 66px;
    gap: 12px;
  }

  .vc-brand img {
    width: 180px;
  }

  .vc-mobile__panel {
    width: calc(100% - 20px);
    margin: 10px auto;
  }
}

/* =========================
   HERO (Soft + Tropical Gradient)
========================= */
.vc-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--vc-grad-bg);
}
.vc-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.vc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.vc-hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.vc-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 25, 35, 0.55) 0%,
    rgba(7, 25, 35, 0.55) 40%,
    rgba(7, 25, 35, 1.68) 100%
  );
}

/* If you still use plane image somewhere, keep it (won’t affect if not present) */
.vc-plane {
  position: absolute;
  bottom: -40px;
  left: -40%;
  width: min(520px, 78vw);
  pointer-events: none;
  opacity: 0.95;
  z-index: 2;
  will-change: transform;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.45));
}
.vc-plane img {
  width: 100%;
  height: auto;
}

.vc-hero--split {
  min-height: 100vh;
}
.vc-hero-split {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 0 0 70px;
}

.vc-hero-inner {
  position: relative;
  z-index: 3;
  padding: 26px 0 70px;
}

.vc-hero-left {
  text-align: left;
}
.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--vc-pill);
  background: rgba(255, 255, 255, 0.7);
  border: var(--vc-border);
  color: var(--vc-coral);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 13px;
}
.vc-badge .vc-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #000;
  box-shadow: 0 0 0 6px rgba(255, 209, 102, 0.18);
}

.vc-hero-title {
  margin: 16px 0 10px;
  font-family: "Quicksand", "Poppins", system-ui, sans-serif;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #000;
}
.vc-hero-title span {
  background: var(--vc-grad-tropical);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vc-hero-sub {
  margin: 0 0 22px;
  font-size: 18px;
  color: #f8f8f8;
  max-width: 760px;
  line-height: 1.7;
}

.vc-hero-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
  color: var(--vc-text2);
  font-weight: 700;
}
.vc-hero-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.vc-hero-points i {
  color: var(--vc-teal);
  margin-top: 2px;
}

.vc-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.vc-hero-card {
  width: min(1100px, 100%);
  justify-items: center;
  border-radius: var(--vc-radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: var(--vc-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 18px 14px;
  position: relative;
}
.vc-hero-card:before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(
      600px 320px at 80% 10%,
      rgba(76, 201, 240, 0.22),
      transparent 55%
    ),
    radial-gradient(
      520px 320px at 10% 70%,
      rgba(46, 196, 182, 0.2),
      transparent 55%
    );
  pointer-events: none;
}

.vc-tab {
  border: 0;
  padding: 10px 16px;
  border-radius: var(--vc-pill);
  background: var(--vc-card);
  border: var(--vc-border);
  box-shadow: var(--vc-shadow-neu-sm);
  color: var(--vc-text);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.vc-tab i {
  color: var(--vc-teal);
}

/* =========================
   Travelpayouts Widgets FIX
========================= */
.vc-widget {
  width: 100%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: var(--vc-border);
  box-shadow: var(--vc-shadow-neu-sm);
  position: relative;
  z-index: 1;
}
.vc-widget iframe,
.vc-widget table,
.vc-widget div {
  max-width: 100% !important;
}
.vc-widget iframe {
  width: 100% !important;
  min-height: 180px;
  border: 0 !important;
  display: block;
}

/* Hide widget branding */
.tp_powered_by {
  display: none !important;
}

/* =========================
   ✅ SWIPER CORE (REQUIRED)
========================= */
.swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; /* required */
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
}
.swiper-horizontal > .swiper-wrapper {
  flex-direction: row;
}
.swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-button-lock {
  display: none !important;
}

/* =========================================================
   VX PREMIUM SECTIONS
========================================================= */
.vx-sec {
  padding: 86px 0;
  background: linear-gradient(135deg, #fff1ee, #ffffff);
}
.vx-sec--soft {
  background: var(--vc-grad-bg);
}
.vx-sec--routes {
  padding-top: 74px;
  padding-bottom: 74px;
}

.vx-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.vx-head__left {
  max-width: 860px;
}

.vx-h2 {
  margin: 0 0 10px;
  font-family: "Quicksand", "Poppins", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--vc-text);
}
.vx-p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--vc-text2);
  max-width: 760px;
}
.vx-center.js-reveal {
  text-align: center;
}
.vx-center.js-reveal p {
  margin: 15px auto;
}
.vx-link {
  color: var(--vc-blue);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.vx-link i {
  transition: transform 0.18s ease;
}
.vx-link:hover i {
  transform: translateX(3px);
}

/* VX slider wrapper */
.vx-sw {
  position: relative;
}
.vx-swiper {
  padding-bottom: 6px;
}
/* IMPORTANT: allow natural slide width with slidesPerView */
.vx-swiper .swiper-slide {
  width: auto;
}

/* Route cards */
.vx-card {
  position: relative;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--vc-soft);
  border: var(--vc-border-soft);
  box-shadow: var(--vc-shadow-neu-soft);
  transform-style: preserve-3d;
  display: block;
}
.vx-card__media {
  position: absolute;
  inset: 0;
}
.vx-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.75s ease;
}
.vx-card:hover .vx-card__media img {
  transform: scale(1.08);
}
.vx-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 55, 72, 0.08) 0%,
    rgba(45, 55, 72, 0.16) 45%,
    rgba(45, 55, 72, 0.58) 100%
  );
}
.vx-card__body {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
}
.vx-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.vx-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}
.vx-pill i {
  color: var(--vc-yellow);
}
.vx-city {
  margin: 10px 0 10px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 900;
}
.vx-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}
.vx-time i {
  margin-right: 8px;
}
.vx-price {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  font-weight: 900;
}

/* Slider controls */
.vx-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.vx-nav {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: var(--vc-border);
  background: var(--vc-card);
  box-shadow: var(--vc-shadow-neu-sm);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
  color: var(--vc-text);
}
.vx-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--vc-shadow-neu);
}
.vx-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.vx-dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 1;
  background: rgba(45, 55, 72, 0.22);
}
.vx-dots .swiper-pagination-bullet-active {
  background: var(--vc-blue);
}

/* Explore islands */
.vx-islands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.vx-island {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--vc-soft);
  border: var(--vc-border-soft);
  box-shadow: var(--vc-shadow-neu-soft);
}
.vx-island img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}
.vx-island:hover img {
  transform: scale(1.06);
}
.vx-island__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 55, 72, 0.05) 0%,
    rgba(45, 55, 72, 0.22) 60%,
    rgba(45, 55, 72, 0.52) 100%
  );
}
.vx-island__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 12px 26px rgba(45, 55, 72, 0.35);
}

/* About */
.vx-about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}
.vx-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
  color: var(--vc-text);
}
.vx-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.vx-list i {
  color: var(--vc-teal);
  margin-top: 2px;
}
.vx-about__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--vc-soft);
  border: var(--vc-border-soft);
  box-shadow: var(--vc-shadow-neu-soft);
}
.vx-about__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.vx-float {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: var(--vc-border);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: var(--vc-shadow-neu-sm);
  backdrop-filter: blur(10px);
}
.vx-float__ic {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(46, 196, 182, 0.14);
  color: var(--vc-teal);
}
.vx-float__k {
  font-size: 12px;
  color: var(--vc-muted);
  font-weight: 900;
}
.vx-float__v {
  font-weight: 950;
  color: var(--vc-text);
}

/* FAQ */
.vx-faq {
  width: min(920px, 100%);
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.78);
  border: var(--vc-border);
  border-radius: 22px;
  box-shadow: var(--vc-shadow-neu-soft);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.vx-faq-item {
  border-top: 1px solid rgba(45, 55, 72, 0.08);
}
.vx-faq-item:first-child {
  border-top: 0;
}
.vx-faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--vc-text);
}
.vx-faq-ic {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(76, 201, 240, 0.14);
  color: var(--vc-blue);
  transition: transform 0.18s ease;
}
.vx-faq-item.is-open .vx-faq-ic {
  transform: rotate(45deg);
}
.vx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(46, 196, 182, 0.06) 100%
  );
}
.vx-faq-a p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--vc-text2);
  line-height: 1.7;
  font-weight: 650;
}

/* Newsletter */
.vx-news {
  position: relative;
  width: min(920px, 100%);
  margin-inline: auto;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: var(--vc-border);
  box-shadow: var(--vc-shadow-neu);
  padding: 40px 22px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.vx-news__orb {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.16);
}
.vx-news__orb--a {
  left: -120px;
  top: -120px;
}
.vx-news__orb--b {
  right: -120px;
  bottom: -120px;
  background: rgba(255, 209, 102, 0.16);
}
.vx-news__ic {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: rgba(76, 201, 240, 0.16);
  color: var(--vc-blue);
  box-shadow: 0 18px 40px rgba(76, 201, 240, 0.14);
  position: relative;
  z-index: 1;
}
.vx-news__h {
  margin: 0 0 8px;
  font-family: "Quicksand", "Poppins", system-ui, sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--vc-text);
  position: relative;
  z-index: 1;
}
.vx-news__p {
  margin: 0 auto 18px;
  max-width: 560px;
  color: var(--vc-text2);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.vx-news__form {
  width: min(640px, 100%);
  margin-inline: auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.vx-news__form input {
  flex: 1;
  border-radius: 16px;
  border: var(--vc-border);
  padding: 14px 14px;
  outline: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--vc-shadow-neu-sm);
}
.vx-news__form input:focus {
  border-color: rgba(46, 196, 182, 0.45);
  box-shadow: 0 0 0 6px rgba(46, 196, 182, 0.14);
}
.vx-news__small {
  display: block;
  margin-top: 10px;
  color: rgba(74, 85, 104, 0.75);
  position: relative;
  z-index: 1;
}

/* =========================
   FOOTER + STICKY CTA
========================= */
.vc-footer {
  background: linear-gradient(
    135deg,
    rgba(46, 196, 182, 0.16),
    rgba(76, 201, 240, 0.14)
  );
  color: var(--vc-text);
  border-top: 1px solid rgba(45, 55, 72, 0.06);
}
.vc-footer__top {
  padding: 46px 0;
}
.vc-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.6fr 0.6fr;
  gap: 26px;
}
.vc-footer__desc {
  color: var(--vc-text2);
  line-height: 1.7;
  margin: 14px 0 16px;
}
.vc-footer__title {
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--vc-text);
}
.vc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.vc-footer__links a {
  color: var(--vc-text2);
  font-weight: 700;
}
.vc-footer__links a:hover {
  color: var(--vc-teal);
}
.vc-footer__social {
  display: flex;
  gap: 10px;
}
.vc-social {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: var(--vc-border);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--vc-shadow-neu-sm);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  color: var(--vc-text);
}
.vc-social:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--vc-shadow-neu);
}
.vc-footer__bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(45, 55, 72, 0.06);
}
.vc-footer__bottomRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vc-footer__copy {
  margin: 0;
  color: rgba(74, 85, 104, 0.85);
  font-size: 13px;
}
.vc-footer__mini {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(74, 85, 104, 0.85);
  font-weight: 700;
  font-size: 13px;
}
.vc-footer__mini a:hover {
  color: var(--vc-teal);
}
.vc-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(74, 85, 104, 0.45);
}

.vc-stickyCta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(45, 55, 72, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9997;
  display: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1023.98px) {
  .vc-menu {
    display: none;
  }
  .vc-burger {
    display: flex;
  }
  .vc-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .vc-stickyCta {
    display: block;
  }

  .vc-hero-split {
    grid-template-columns: 1fr;
    padding: 40px 0 64px;
  }
  .vc-hero-left {
    text-align: center;
  }
  .vc-hero-title {
    font-size: 54px;
  }
  .vc-hero-cta {
    justify-content: center;
  }

  .vx-h2 {
    font-size: 34px;
  }
  .vx-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .vx-islands {
    grid-template-columns: 1fr;
  }
  .vx-about {
    grid-template-columns: 1fr;
  }
  .vx-about__media img {
    height: 360px;
  }
  .vx-news__form {
    flex-direction: column;
  }
}

@media (max-width: 424.98px) {
  .vc-title {
    font-size: 30px;
  }
  .vc-hero-title {
    font-size: 44px;
  }
  .vx-h2 {
    font-size: 30px;
  }
  .vx-card {
    height: 260px;
  }
}

/* Extra section colors (kept, re-themed) */
.vc-hero-note {
  color: var(--vc-coral);
}
/* pop color #e1e9e5, #ecf4e5 */

section#explore {
  background: var(--vc-grad-bg);
}

section#popular-routes {
  background: linear-gradient(
    180deg,
    rgba(46, 196, 182, 0.14) 0%,
    rgba(76, 201, 240, 0.14) 100%
  );
  padding: 40px;
  border-top: 1px solid rgba(45, 55, 72, 0.06);
  border-bottom: 1px solid rgba(45, 55, 72, 0.06);
}

/* Hide Travelpayouts footer + referral UI (kept exact selectors) */
.tpwl-footer__wrapper {
  display: none !important;
}
.SearchEdit-module__referral___udabG {
  display: none !important;
}
.tpwl-logo-header {
  display: none !important;
}
.SearchEdit-module__referral___udabG,
.SearchEdit-module__referralLink___6fiFo {
  display: none !important;
}

/* FILE: /htdocs/www.visitcayman.ky/assets/flights.css */
/* Uses variables + fonts from /assets/style.css */

.vc-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .vc-container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .vc-container {
    padding: 0 32px;
  }
}

/* FILE: /htdocs/www.visitcayman.ky/assets/country.css */
/* Uses your theme vars and font system already defined in /assets/style.css */

.country-page {
  background: var(--vc-grad-bg);
}

.country_main {
  overflow: hidden;
}

.country_section {
  position: relative;
  padding: 48px 0;
}

.country_section--tight {
  padding: 34px 0 20px;
}

.country_section--soft {
  background: transparent;
}

.country_section--white {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.country_section--airlines {
  padding: 60px 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(238, 243, 248, 0.65) 100%
  );
}

.country_section--borderTop {
  border-top: var(--vc-border-soft);
}

/* =========================
   HERO
========================= */
.country_hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 70px 0 70px;
}

.country_blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.52;
  animation: countryFloat 11s ease-in-out infinite;
  pointer-events: none;
}

.country_blob--a {
  width: 390px;
  height: 390px;
  left: -110px;
  top: 30px;
  background: rgba(76, 201, 240, 0.44);
}

.country_blob--b {
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -80px;
  background: rgba(46, 196, 182, 0.34);
  animation-delay: 1.6s;
}

.country_blob--c {
  width: 280px;
  height: 280px;
  left: 48%;
  top: 35%;
  background: rgba(255, 209, 102, 0.24);
  animation-delay: 0.8s;
}

@keyframes countryFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -20px) scale(1.08);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.country_heroWrap {
  position: relative;
  z-index: 2;
}

.country_heroGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
}

.country_heroLeft,
.country_heroRight {
  min-width: 0;
}

.country_pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: var(--vc-pill);
  background: rgba(255, 255, 255, 0.88);
  border: var(--vc-border-soft);
  box-shadow: var(--vc-shadow-neu-sm);
  margin-bottom: 18px;
}

.country_pill i {
  color: var(--vc-coral);
}

.country_flag {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(45, 55, 72, 0.12);
}

.country_pillText {
  font-weight: 800;
  color: var(--vc-text2);
  font-size: 13px;
}

.country_h1 {
  margin: 0 0 16px;
  color: var(--vc-ink);
  font-size: clamp(42px, 5.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.country_gradText {
  background: var(--vc-grad-tropical);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.country_subLead {
  margin: 0 0 24px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  color: var(--vc-text2);
  font-weight: 600;
  max-width: 700px;
}

.country_em {
  color: var(--vc-teal);
  font-weight: 800;
  border-bottom: 2px solid rgba(46, 196, 182, 0.25);
}

.country_widget {
  border-radius: 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.country_imgStack {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
  min-height: 430px;
}

.country_mainCard {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(2deg);
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--vc-shadow-float);
  transition: transform 0.4s ease;
}

.country_mainCard:hover {
  transform: rotate(0deg);
}

.country_mainImg {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.country_imgOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.country_imgCaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--vc-white);
}

.country_imgTitle {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.country_imgMeta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
}

.country_imgMeta i {
  color: var(--vc-yellow);
}

.country_floatCard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(45, 55, 72, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 4;
  animation: countryFloatCard 4.5s ease-in-out infinite;
}

.country_floatCard--top {
  top: -18px;
  right: -16px;
}

.country_floatCard--bottom {
  bottom: -22px;
  left: -18px;
  animation-delay: 0.8s;
}

.country_floatIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 196, 182, 0.12);
  color: var(--vc-teal);
  box-shadow: var(--vc-shadow-neu-sm);
}

.country_floatIcon--yellow {
  background: rgba(255, 209, 102, 0.16);
  color: #d69d00;
}

.country_floatCard small {
  display: block;
  color: var(--vc-muted);
  font-weight: 700;
  margin-bottom: 2px;
}

.country_floatCard strong {
  display: block;
  color: var(--vc-ink);
  font-weight: 800;
  font-size: 14px;
}

@keyframes countryFloatCard {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

/* =========================
   HEADINGS / TEXT
========================= */
.country_headRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.country_headRow--tight {
  margin-bottom: 18px;
}

.country_h2 {
  margin: 0 0 8px;
  color: var(--vc-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.country_h3 {
  margin: 0 0 12px;
  color: var(--vc-ink);
  font-size: 26px;
  line-height: 1.16;
}

.country_p {
  margin: 0;
  color: var(--vc-text2);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.country_p--max {
  max-width: 720px;
  margin-inline: auto;
}

.country_center {
  text-align: center;
}

.country_mt {
  margin-top: 24px;
}

.country_kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--vc-teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* =========================
   STATS
========================= */
.country_statsGrid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}

.country_statCard {
  background: rgba(255, 255, 255, 0.84);
  border: var(--vc-border-soft);
  border-radius: 24px;
  box-shadow: var(--vc-shadow-neu-soft);
  padding: 22px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.country_statCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-neu);
}

.country_statCard span {
  display: block;
  color: var(--vc-muted);
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 13px;
}

.country_statCard strong {
  display: block;
  color: var(--vc-ink);
  font-weight: 800;
  font-size: 18px;
}

.country_statIcon {
  width: 52px;
  height: 52px;
  margin-inline: auto;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 196, 182, 0.14);
  color: var(--vc-teal);
  box-shadow: var(--vc-shadow-neu-sm);
  font-size: 20px;
}

.country_statIcon--blue {
  background: rgba(76, 201, 240, 0.14);
  color: var(--vc-blue);
}

.country_statIcon--yellow {
  background: rgba(255, 209, 102, 0.2);
  color: #d69d00;
}

.country_statIcon--coral {
  background: rgba(255, 126, 103, 0.16);
  color: var(--vc-coral);
}

/* =========================
   ROUTES SLIDER
========================= */
.country_navBtns {
  display: flex;
  gap: 10px;
}

.country_swiperBtn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: var(--vc-border-soft);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--vc-shadow-neu-sm);
  color: var(--vc-text2);
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.country_swiperBtn:hover {
  transform: translateY(-2px);
  color: var(--vc-teal);
}

.country_routesSwiper {
  overflow: visible;
}

.country_routesSwiper .swiper-slide {
  height: auto;
}

.country_routeCard {
  display: block;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--vc-card);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--vc-shadow-neu-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.country_routeCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--vc-shadow-neu);
}

.country_routeImg {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #dde4ec;
}

.country_routeImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.country_routeCard:hover .country_routeImg img {
  transform: scale(1.08);
}

.country_routeTag {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 6px 12px;
  border-radius: var(--vc-pill);
  background: rgba(255, 255, 255, 0.88);
  color: var(--vc-teal);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--vc-shadow-neu-sm);
}

.country_routeBody {
  padding: 18px;
}

.country_routeLine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.country_routeFrom {
  color: var(--vc-ink);
  font-weight: 800;
  font-size: 15px;
}

.country_planeIc {
  color: var(--vc-light);
  transform: rotate(45deg);
  font-size: 12px;
}

.country_routeTo {
  color: var(--vc-teal);
  font-weight: 800;
  font-size: 15px;
}

.country_routeSep {
  height: 1px;
  background: rgba(45, 55, 72, 0.1);
  margin: 14px 0;
}

.country_routeFoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.country_routeDates {
  color: var(--vc-text2);
  font-size: 13px;
  font-weight: 700;
}

.country_routeDates i {
  color: var(--vc-teal);
  margin-right: 6px;
}

.country_routePrice {
  color: var(--vc-coral);
  font-size: 13px;
  font-weight: 800;
}

/* =========================
   AIRLINES BRAND SLIDER
========================= */
.country_card {
  background: rgba(255, 255, 255, 0.74);
}

.country_card--pad {
  padding: 20px 16px 16px;
}

.country_airlinesSwiper {
  overflow: hidden;
}

.country_airlinesSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.country_airlineSlide {
  width: 180px !important;
}

.country_airlineItem {
  height: 150px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.country_airlineItem:hover {
  transform: translateY(-3px);
  box-shadow: var(--vc-shadow-neu);
}

.country_airlineLogo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.country_note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--vc-muted);
  font-size: 13px;
  font-weight: 700;
}

.country_note i {
  color: var(--vc-blue);
}

/* =========================
   CARIBBEAN JEWEL
========================= */
.country_jewel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.country_jewelContent {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.country_jewelFeatures {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.country_jewelItem {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(240, 243, 249, 0.8);
  box-shadow: var(--vc-shadow-neu-sm);
}

.country_jewelItem i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vc-teal);
  background: rgba(46, 196, 182, 0.14);
  font-size: 18px;
}

.country_jewelItem h4 {
  margin: 0 0 4px;
  color: var(--vc-ink);
  font-size: 16px;
  font-weight: 800;
}

.country_jewelItem p {
  margin: 0;
  color: var(--vc-text2);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

.country_jewelMediaGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.country_jewelPhoto {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--vc-shadow-neu-soft);
  border: 3px solid rgba(255, 255, 255, 0.9);
  min-height: 160px;
}

.country_jewelPhoto--lg {
  grid-column: span 2;
  height: 400px;
}

.country_jewelPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   CITIES
========================= */
.country_cityGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}

.country_cityCard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(240, 243, 249, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--vc-shadow-neu-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.country_cityCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-neu);
}

.country_cityImg {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
}

.country_cityImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.country_cityCard:hover .country_cityImg img {
  transform: scale(1.08);
}

.country_cityBody {
  flex: 1 1 auto;
  min-width: 0;
}

.country_cityTitle {
  color: var(--vc-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.country_citySub {
  color: var(--vc-text2);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

.country_chip {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: var(--vc-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--vc-blue);
  box-shadow: var(--vc-shadow-neu-sm);
  font-size: 12px;
  font-weight: 800;
}

.country_cityArrow {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--vc-shadow-neu-sm);
  color: var(--vc-muted);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.country_cityCard:hover .country_cityArrow {
  color: var(--vc-teal);
  transform: translateX(3px);
}

.is-hidden-city {
  display: none;
}

.country_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--vc-pill);
  border: var(--vc-border-soft);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--vc-shadow-neu-sm);
  color: var(--vc-ink);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.country_btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--vc-shadow-neu);
}

.country_btn--load {
  min-width: 180px;
}

.country_btn--primary {
  color: var(--vc-white);
  background: var(--vc-grad-main);
  border: none;
  box-shadow: 0 14px 34px rgba(46, 196, 182, 0.28);
}

/* =========================
   WHY VISIT
========================= */
.country_visitGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.country_visitPhotoStack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.country_visitPhoto {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--vc-shadow-neu-soft);
  min-height: 180px;
}

.country_visitPhoto--big {
  grid-column: span 2;
  min-height: 280px;
}

.country_visitPhoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country_visitContent {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.country_visitList {
  list-style: none;
  padding: 0;
  margin: 22px 0 24px;
  display: grid;
  gap: 14px;
}

.country_visitList li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.country_visitList i {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 196, 182, 0.14);
  color: var(--vc-teal);
  flex: 0 0 auto;
  font-size: 14px;
}

.country_visitList strong {
  display: block;
  color: var(--vc-ink);
  font-size: 16px;
  margin-bottom: 2px;
}

.country_visitList span {
  display: block;
  color: var(--vc-text2);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
}

/* =========================
   TIPS
========================= */
.country_tipGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
}

.country_tipCard {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(240, 243, 249, 0.86) 100%
  );
  border: var(--vc-border-soft);
  box-shadow: var(--vc-shadow-neu-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.country_tipCard:hover {
  transform: translateY(-5px);
  box-shadow: var(--vc-shadow-neu);
}

.country_tipIc {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 196, 182, 0.14);
  color: var(--vc-teal);
  font-size: 20px;
  box-shadow: var(--vc-shadow-neu-sm);
  margin-bottom: 14px;
}

.country_tipIc--yellow {
  background: rgba(255, 209, 102, 0.22);
  color: #d69d00;
}

.country_tipIc--coral {
  background: rgba(255, 126, 103, 0.16);
  color: var(--vc-coral);
}

/* =========================
   FAQ
========================= */
.country_faqWrap {
  max-width: 920px;
}

.country_faqList {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.country_faq {
  background: rgba(240, 243, 249, 0.92);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--vc-shadow-neu-sm);
  overflow: hidden;
}

.country_faqSum {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  color: var(--vc-ink);
  font-weight: 800;
}

.country_faqSum::-webkit-details-marker {
  display: none;
}

.country_faqSum i {
  color: var(--vc-teal);
  transition: transform 0.22s ease;
}

.country_faq[open] .country_faqSum i {
  transform: rotate(180deg);
}

.country_faqBody {
  padding: 0 20px 20px;
  color: var(--vc-text2);
  line-height: 1.7;
  font-weight: 600;
}

/* =========================
   RELATED COUNTRIES
========================= */
.country_countryGrid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.country_countryCard {
  display: block;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--vc-shadow-neu-sm);
  text-align: center;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.country_countryCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--vc-shadow-neu);
}

.country_countryFlag {
  width: 42px;
  height: 30px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 auto 10px;
  box-shadow: 0 8px 20px rgba(45, 55, 72, 0.12);
}

.country_countryName {
  color: var(--vc-ink);
  font-size: 14px;
  font-weight: 800;
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 768px) {
  .country_statsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country_cityGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country_tipGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .country_countryGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .country_heroGrid {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 60px;
  }

  .country_jewel {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .country_visitGrid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .country_cityGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .country_countryGrid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .country_hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .country_imgStack {
    min-height: 360px;
  }

  .country_mainImg {
    min-height: 360px;
  }

  .country_floatCard--top {
    top: -14px;
    right: 10px;
  }

  .country_floatCard--bottom {
    bottom: -14px;
    left: 10px;
  }
}

@media (max-width: 575.98px) {
  .country_headRow {
    flex-direction: column;
    align-items: flex-start;
  }

  .country_imgStack {
    min-height: 300px;
  }

  .country_mainImg {
    min-height: 300px;
  }

  .country_airlineSlide {
    width: 150px !important;
  }

  .country_airlineItem {
    height: 74px;
  }

  .country_airlineLogo {
    max-width: 96px;
    max-height: 34px;
  }

  .country_floatCard {
    padding: 10px 12px;
  }

  .country_floatIcon {
    width: 38px;
    height: 38px;
  }
}

/* ======================
   COUNTRY PAGES GRID
====================== */
.vc-country-pages {
  position: relative;
}

.vc-country-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

@media (min-width: 768px) {
  .vc-country-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .vc-country-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.vc-country-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 18px;
  background: var(--vc-card);
  border-radius: 24px;
  box-shadow: var(--vc-shadow-neu);
  border: var(--vc-border-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  min-height: 110px;
}

.vc-country-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vc-shadow-float);
  background: #ffffff;
}

.vc-country-card__flag {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 68px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.vc-country-card__flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.vc-country-card:hover .vc-country-card__flag img {
  transform: scale(1.06);
}

.vc-country-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.vc-country-card__title {
  margin: 0 0 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--vc-text);
  line-height: 1.2;
}

.vc-country-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vc-teal);
  font-weight: 700;
  font-size: 14px;
}

.vc-country-card__link i {
  transition: transform 0.25s ease;
}

.vc-country-card:hover .vc-country-card__link i {
  transform: translateX(4px);
}

.vc-country-empty {
  text-align: center;
  padding: 24px;
  color: var(--vc-muted);
  background: var(--vc-card);
  border-radius: 20px;
  box-shadow: var(--vc-shadow-neu-soft);
}

/* ======================
   RETURN FLIGHTS PAGE
====================== */
.rf-main {
  overflow: hidden;
}

.rf-section {
  padding: 72px 0;
}

.rf-section--soft {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.rf-section--white {
  background: #ffffff;
}

.rf-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    rgba(46, 196, 182, 0.08),
    rgba(76, 201, 240, 0.08),
    rgba(255, 209, 102, 0.08)
  );
}

.rf-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(46, 196, 182, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(76, 201, 240, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 60% 85%,
      rgba(255, 126, 103, 0.14),
      transparent 28%
    );
}

.rf-hero-wrap {
  position: relative;
  z-index: 2;
}

.rf-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.rf-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--vc-shadow-neu-soft);
  margin-bottom: 18px;
}

.rf-badge img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.rf-title {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  color: var(--vc-text);
  margin: 0 0 18px;
}

.rf-title span {
  background: var(--vc-grad-main);
  -webkit-background-clip: text;
  color: transparent;
}

.rf-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--vc-text2);
  max-width: 640px;
  margin-bottom: 24px;
}

.rf-search {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: var(--vc-shadow-neu);
  border: var(--vc-border-soft);
  padding: 18px;
}

.rf-hero-media {
  position: relative;
  min-height: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--vc-shadow-neu);
  border: 4px solid rgba(255, 255, 255, 0.85);
}

.rf-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45));
}

.rf-hero-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
}

.rf-hero-caption-title {
  font-family: "Quicksand", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.rf-hero-caption-sub {
  font-size: 14px;
  opacity: 0.92;
}

.rf-facts-grid,
.rf-card-grid,
.rf-airline-grid,
.rf-city-grid,
.rf-destination-grid {
  display: grid;
  gap: 22px;
}

.rf-facts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rf-fact-card,
.rf-info-card {
  background: var(--vc-card);
  border-radius: 24px;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
  padding: 26px 22px;
}

.rf-fact-card i,
.rf-info-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vc-grad-main);
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}

.rf-fact-card h3,
.rf-info-card h3,
.rf-airport-body h3,
.rf-destination-card h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--vc-text);
}

.rf-fact-card p,
.rf-info-card p,
.rf-airport-body p,
.rf-destination-card p,
.rf-split__content p {
  color: var(--vc-text2);
  line-height: 1.7;
  margin: 0;
}

.rf-sec-head {
  margin-bottom: 32px;
}

.rf-sec-head--center {
  text-align: center;
}

.rf-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vc-teal);
  font-weight: 700;
  margin-bottom: 8px;
}

.rf-h2 {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  color: var(--vc-text);
  margin: 0;
}

.rf-route-highlight {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 20px;
  align-items: center;
}

.rf-airport-card {
  background: var(--vc-card);
  border-radius: 28px;
  box-shadow: var(--vc-shadow-neu);
  border: var(--vc-border-soft);
  overflow: hidden;
}

.rf-airport-media {
  position: relative;
  height: 220px;
}

.rf-airport-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-airport-code {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: #fff;
  color: var(--vc-text);
  border-radius: 999px;
  min-width: 66px;
  text-align: center;
  padding: 8px 12px;
  font-weight: 800;
  box-shadow: var(--vc-shadow-neu-soft);
}

.rf-airport-body {
  padding: 22px;
}

.rf-airport-meta {
  margin-top: 14px;
  font-size: 14px;
  color: var(--vc-teal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.rf-route-middle {
  text-align: center;
  position: relative;
}

.rf-route-middle:before,
.rf-route-middle:after {
  content: "";
  position: absolute;
  top: 34px;
  width: calc(50% - 36px);
  border-top: 2px dashed rgba(45, 55, 72, 0.15);
}

.rf-route-middle:before {
  left: 0;
}

.rf-route-middle:after {
  right: 0;
}

.rf-route-plane {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: var(--vc-shadow-neu-soft);
  color: var(--vc-teal);
  font-size: 24px;
  position: relative;
  z-index: 2;
}

.rf-route-label {
  display: inline-block;
  padding: 12px 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--vc-shadow-neu-soft);
  color: var(--vc-text2);
  font-size: 14px;
  font-weight: 700;
}

.rf-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rf-airline-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.rf-airline {
  background: var(--vc-card);
  border-radius: 22px;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.rf-airline img {
  max-width: 120px;
  max-height: 46px;
  object-fit: contain;
}

.rf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.rf-split__media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--vc-shadow-neu);
  min-height: 460px;
}

.rf-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-destination-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rf-destination-card {
  background: var(--vc-card);
  border-radius: 24px;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
  overflow: hidden;
}

.rf-destination-card__media {
  height: 220px;
}

.rf-destination-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rf-destination-card__body {
  padding: 20px;
}

.rf-city-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.rf-city-card {
  display: block;
  background: var(--vc-card);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.rf-city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vc-shadow-float);
}

.rf-city-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.rf-city-card__body {
  padding: 18px;
}

.rf-city-name {
  font-family: "Quicksand", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--vc-text);
}

.rf-city-country {
  font-size: 14px;
  color: var(--vc-muted);
  margin-top: 5px;
}

.rf-faq {
  max-width: 920px;
  margin: 0 auto;
}

.rf-faq-item {
  background: var(--vc-card);
  border-radius: 20px;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
  padding: 0 22px;
  margin-bottom: 14px;
}

.rf-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
  color: var(--vc-text);
}

.rf-faq-item p {
  color: var(--vc-text2);
  line-height: 1.7;
  padding: 0 0 20px;
  margin: 0;
}

.country_breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--vc-muted);
  font-size: 14px;
}

.country_breadcrumbs a {
  color: var(--vc-teal);
}

@media (max-width: 1199px) {
  .rf-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rf-route-highlight {
    grid-template-columns: 1fr;
  }

  .rf-route-middle:before,
  .rf-route-middle:after {
    display: none;
  }

  .rf-card-grid,
  .rf-destination-grid,
  .rf-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rf-airline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rf-split,
  .rf-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .rf-section {
    padding: 56px 0;
  }

  .rf-airline-grid,
  .rf-card-grid,
  .rf-destination-grid,
  .rf-city-grid,
  .rf-facts-grid {
    grid-template-columns: 1fr;
  }

  .rf-hero {
    padding: 100px 0 56px;
  }

  .rf-hero-media,
  .rf-split__media {
    min-height: 320px;
  }

  .rf-airport-media {
    height: 180px;
  }
}
/* =========================================================
   VISIT CAYMAN FOOTER
   ========================================================= */

.vc-footer {
  position: relative;
  background: #f4f5f7;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.vc-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(99, 102, 241, 0.05),
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(59, 130, 246, 0.05),
      transparent 24%
    );
  pointer-events: none;
}

.vc-footer__top {
  position: relative;
  padding: 78px 0 54px;
}

.vc-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.vc-footer__brand {
  max-width: 380px;
}

.vc-brand--footer {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 28px;
}

.vc-brand--footer img {
  display: block;
  max-width: 100%;
  height: auto;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.vc-brand--footer:hover img {
  transform: translateY(-2px) scale(1.01);
  filter: drop-shadow(0 8px 20px rgba(79, 70, 229, 0.12));
}

.vc-footer__desc {
  margin: 0 0 34px;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  max-width: 360px;
}

.vc-footer__title {
  margin: 6px 0 24px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vc-footer__menu,
.vc-footer__contactList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vc-footer__menu li {
  margin: 0 0 18px;
}

.vc-footer__menu li:last-child,
.vc-footer__contactList li:last-child {
  margin-bottom: 0;
}

.vc-footer__menu a,
.vc-footer__contactText a {
  position: relative;
  display: inline-block;
  color: #667085;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.5;
  transition:
    color 0.28s ease,
    transform 0.28s ease,
    opacity 0.28s ease;
}

.vc-footer__menu a::after,
.vc-footer__contactText a::after,
.vc-footer__mini a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3b82f6, #6d5dfc);
  transition: width 0.3s ease;
}

.vc-footer__menu a:hover,
.vc-footer__contactText a:hover,
.vc-footer__mini a:hover {
  color: #111827;
  transform: translateX(4px);
}

.vc-footer__menu a:hover::after,
.vc-footer__contactText a:hover::after,
.vc-footer__mini a:hover::after {
  width: 100%;
}

.vc-footer__social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.vc-social {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #6b7280;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.vc-social i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.vc-social:hover {
  color: #5b5cf0;
  background: #ffffff;
  border-color: rgba(109, 93, 252, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(91, 92, 240, 0.14);
}

.vc-social:hover i {
  transform: scale(1.08);
}

.vc-footer__contactList li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 24px;
}

.vc-footer__icon {
  flex: 0 0 20px;
  width: 20px;
  text-align: center;
  color: #6d5dfc;
  font-size: 22px;
  line-height: 1;
  margin-top: 4px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.vc-footer__contactList li:hover .vc-footer__icon {
  transform: translateY(-2px) scale(1.08);
  color: #4f46e5;
}

.vc-footer__contactText {
  flex: 1;
}

.vc-footer__contactText a {
  color: #667085;
  font-size: 17px;
  line-height: 1.65;
  text-decoration: none;
}

.vc-footer__bottom {
  position: relative;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  padding: 22px 0 26px;
}

.vc-footer__bottomRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.vc-footer__copy {
  margin: 0;
  color: #98a2b3;
  font-size: 15px;
  line-height: 1.5;
}

.vc-footer__mini {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vc-footer__mini a {
  position: relative;
  color: #7b8794;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  transition:
    color 0.28s ease,
    transform 0.28s ease;
}

.vc-footer__mini a:hover {
  transform: translateY(-1px);
  color: #111827;
}

.vc-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c7ced9;
  display: inline-block;
}

/* subtle reveal animation */
.vc-footer__brand,
.vc-footer__links,
.vc-footer__contact {
  animation: vcFooterFadeUp 0.8s ease both;
}

.vc-footer__links:nth-child(2) {
  animation-delay: 0.08s;
}

.vc-footer__links:nth-child(3) {
  animation-delay: 0.16s;
}

.vc-footer__contact:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes vcFooterFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {
  .vc-footer__grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr;
    gap: 34px;
  }

  .vc-footer__desc {
    font-size: 16px;
  }

  .vc-footer__menu a,
  .vc-footer__contactText a {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .vc-footer__top {
    padding: 64px 0 42px;
  }

  .vc-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 28px;
  }

  .vc-footer__brand {
    max-width: 100%;
  }

  .vc-footer__desc {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .vc-footer__top {
    padding: 52px 0 34px;
  }

  .vc-footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .vc-footer__title {
    margin-bottom: 18px;
    font-size: 19px;
  }

  .vc-footer__desc {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.7;
  }

  .vc-social {
    width: 52px;
    height: 52px;
  }

  .vc-social i {
    font-size: 21px;
  }

  .vc-footer__menu li {
    margin-bottom: 14px;
  }

  .vc-footer__contactList li {
    margin-bottom: 18px;
  }

  .vc-footer__bottom {
    padding: 18px 0 22px;
  }

  .vc-footer__bottomRow {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .vc-footer__mini {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .vc-brand--footer img {
    max-width: 230px;
  }

  .vc-footer__copy,
  .vc-footer__mini a {
    font-size: 14px;
  }

  .vc-footer__contactText a,
  .vc-footer__menu a {
    font-size: 15px;
  }
}

.vc-hero-left.js-reveal {
  padding: 77px 0 0 0;
}
.country_heroLeft {
  padding: 26px 0;
}

/* >>>> New Page Theme <<<< */

/* =========================================================
   FILE: /htdocs/www.visitcayman.ky/assets/style.css
   FLIGHTS PAGE SECTIONS
========================================================= */

#vcfp-main {
  position: relative;
  overflow: hidden;
}

.vcfp-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.vcfp-shell--narrow {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.vcfp-section {
  position: relative;
  padding: 84px 0;
}

.vcfp-section--white {
  background: var(--vc-soft);
}

.vcfp-section--soft {
  background: var(--vc-alt);
}

.vcfp-heading {
  margin: 0 0 34px;
}

.vcfp-heading--center {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.vcfp-kicker {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--vc-teal);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 800;
}

.vcfp-heading h2 {
  margin: 0 0 14px;
  color: var(--vc-text);
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.vcfp-heading p {
  margin: 0;
  color: var(--vc-text2);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}

/* 1. banner */
#vcfp-banner {
  position: relative;
  padding: 88px 0 44px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(76, 201, 240, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(46, 196, 182, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, var(--vc-bg), var(--vc-alt));
}

.vcfp-banner__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}

.vcfp-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin-bottom: 22px;
  border-radius: var(--vc-pill);
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-sm);
  border: var(--vc-border-soft);
}

.vcfp-pill img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.vcfp-pill span {
  color: var(--vc-text);
  font-size: 16px;
  font-weight: 800;
}

.vcfp-banner__title {
  margin: 0 0 16px;
  color: var(--vc-text);
  font-size: clamp(44px, 4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.vcfp-banner__title span {
  display: block;
  background: var(--vc-grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vcfp-banner__text {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--vc-text2);
  font-size: clamp(17px, 1.5vw, 18px);
  line-height: 1.8;
  font-weight: 600;
}

.vcfp-searchBox {
  padding: 22px;
  border-radius: 28px;
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-searchBox__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.vcfp-searchBox__head strong {
  color: var(--vc-text);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.vcfp-searchBox__head span {
  color: var(--vc-muted);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.vcfp-banner__media {
  position: relative;
}

.vcfp-bannerCard {
  position: relative;
  padding: 12px;
  border-radius: 38px;
  background: var(--vc-card);
  box-shadow: var(--vc-shadow-neu);
  border: var(--vc-border-soft);
  overflow: hidden;
  transform: rotate(-1.2deg);
}

.vcfp-bannerCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.vcfp-bannerCard__overlay {
  position: absolute;
  inset: 12px;
  border-radius: 30px;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 36%,
    rgba(15, 23, 42, 0.35) 100%
  );
}

.vcfp-bannerCard__caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--vc-white);
}

.vcfp-bannerCard__caption strong {
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.08;
  font-weight: 800;
}

.vcfp-bannerCard__caption span {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  opacity: 0.95;
}

.vcfp-float {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  padding: 16px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--vc-shadow-float);
  backdrop-filter: blur(8px);
  border: var(--vc-border-soft);
}

.vcfp-float--top {
  top: 22px;
  right: -8px;
}

.vcfp-float--bottom {
  left: -10px;
  bottom: 18px;
}

.vcfp-float__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(46, 196, 182, 0.12);
  color: var(--vc-teal);
  font-size: 22px;
  flex: 0 0 auto;
}

.vcfp-float__icon--gold {
  background: rgba(255, 209, 102, 0.18);
  color: #c28d12;
}

.vcfp-float small {
  display: block;
  margin-bottom: 6px;
  color: var(--vc-muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
}

.vcfp-float strong {
  color: var(--vc-text);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
}

/* 2. logos */
#vcfp-airlines {
  padding-top: 50px;
  padding-bottom: 50px;
}

.vcfp-logoGrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 26px;
}

.vcfp-logoCard {
  height: 132px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.vcfp-logoCard img {
  max-width: 76%;
  max-height: 64px;
  object-fit: contain;
}

/* 3. route */
.vcfp-routeOverview {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 24px;
  align-items: center;
}

.vcfp-routeCard {
  border-radius: 34px;
  overflow: hidden;
  background: var(--vc-card);
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-routeCard__media {
  position: relative;
  height: 290px;
  overflow: hidden;
}

.vcfp-routeCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcfp-routeCard__code {
  position: absolute;
  right: 24px;
  bottom: 20px;
  padding: 12px 22px;
  border-radius: var(--vc-pill);
  background: var(--vc-soft);
  color: var(--vc-text);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  box-shadow: var(--vc-shadow-neu-sm);
}

.vcfp-routeCard__body {
  padding: 26px 30px 28px;
}

.vcfp-routeCard__body h3 {
  margin: 0 0 12px;
  color: var(--vc-text);
  font-size: 30px;
  line-height: 1.08;
  font-weight: 800;
}

.vcfp-routeCard__body p {
  margin: 0 0 18px;
  color: var(--vc-text2);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
}

.vcfp-routeCard__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--vc-teal);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}

.vcfp-routeMiddle {
  position: relative;
  text-align: center;
}

.vcfp-routeMiddle::before,
.vcfp-routeMiddle::after {
  content: "";
  position: absolute;
  top: 44px;
  width: 42%;
  border-top: 3px dashed rgba(45, 55, 72, 0.12);
}

.vcfp-routeMiddle::before {
  left: 0;
}
.vcfp-routeMiddle::after {
  right: 0;
}

.vcfp-routeMiddle__plane {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-sm);
  display: grid;
  place-items: center;
  color: var(--vc-teal);
  font-size: 34px;
}

.vcfp-routeMiddle__label {
  display: inline-block;
  padding: 18px 24px;
  border-radius: 24px;
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-sm);
  color: var(--vc-text);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
}

/* 4. why */
.vcfp-whyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vcfp-whyCard {
  padding: 42px 34px;
  border-radius: 30px;
  background: var(--vc-card);
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-whyCard__icon {
  width: 92px;
  height: 92px;
  margin-bottom: 26px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--vc-white);
  font-size: 34px;
  background: var(--vc-grad-main);
}

.vcfp-whyCard:nth-child(2) .vcfp-whyCard__icon {
  background: var(--vc-grad-tropical);
}

.vcfp-whyCard:nth-child(3) .vcfp-whyCard__icon {
  background: var(--vc-grad-sunset);
}

.vcfp-whyCard h3 {
  margin: 0 0 14px;
  color: var(--vc-text);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}

.vcfp-whyCard p {
  margin: 0;
  color: var(--vc-text2);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
}

/* 5. content */
.vcfp-contentGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.vcfp-contentCard {
  padding: 40px 38px;
  border-radius: 34px;
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-contentCard h2 {
  margin: 0 0 16px;
  color: var(--vc-text);
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.05;
  font-weight: 800;
}

.vcfp-contentCard p {
  margin: 0 0 14px;
  color: var(--vc-text2);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}

.vcfp-contentList {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vcfp-contentList__item {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: var(--vc-card);
  box-shadow: var(--vc-shadow-neu-sm);
}

.vcfp-contentList__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(46, 196, 182, 0.12);
  color: var(--vc-teal);
  font-size: 24px;
  flex: 0 0 auto;
}

.vcfp-contentList__text strong {
  display: block;
  margin-bottom: 6px;
  color: var(--vc-text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.vcfp-contentList__text span {
  color: var(--vc-text2);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.vcfp-contentMedia {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
}

.vcfp-contentMedia__big {
  min-height: 460px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-contentMedia__big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcfp-contentMedia__smallWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.vcfp-contentMedia__small {
  height: 210px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-contentMedia__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 6. best time */
.vcfp-seasonGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.vcfp-seasonCard {
  min-height: 278px;
  padding: 42px 34px 32px;
  border-radius: 32px;
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-seasonCard h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}

.vcfp-seasonCard strong {
  display: block;
  margin-bottom: 22px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.vcfp-seasonCard p {
  margin: 0;
  color: var(--vc-text2);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
}

.vcfp-seasonCard--gold {
  background: #f5f0df;
  border-color: rgba(255, 209, 102, 0.35);
}
.vcfp-seasonCard--gold h3 {
  color: #a8430c;
}
.vcfp-seasonCard--gold strong {
  color: #f05a00;
}

.vcfp-seasonCard--mint {
  background: #e6f1f2;
  border-color: rgba(46, 196, 182, 0.28);
}
.vcfp-seasonCard--mint h3 {
  color: #0e6d67;
}
.vcfp-seasonCard--mint strong {
  color: #009c93;
}

.vcfp-seasonCard--blue {
  background: #e8edf8;
  border-color: rgba(76, 201, 240, 0.22);
}
.vcfp-seasonCard--blue h3 {
  color: #2145a8;
}
.vcfp-seasonCard--blue strong {
  color: #2d65ff;
}

/* 7. experiences */
.vcfp-expGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vcfp-expCard {
  border-radius: 30px;
  overflow: hidden;
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-expCard__media {
  height: 248px;
}

.vcfp-expCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcfp-expCard__body {
  padding: 24px 22px 28px;
}

.vcfp-expCard__body h3 {
  margin: 0 0 10px;
  color: var(--vc-text);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
}

.vcfp-expCard__body p {
  margin: 0;
  color: var(--vc-text2);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

/* 8. slider */
.vcfp-sliderWrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.vcfp-sliderBtn {
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-sm);
  color: var(--vc-text);
  font-size: 18px;
  cursor: pointer;
  flex: 0 0 auto;
}

.vcfp-cityTrack {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 260px);
  gap: 22px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.vcfp-cityTrack::-webkit-scrollbar {
  display: none;
}

.vcfp-cityCard {
  scroll-snap-align: start;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-cityCard__media {
  height: 170px;
}

.vcfp-cityCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vcfp-cityCard__body {
  padding: 18px 18px 20px;
}

.vcfp-cityCard__body strong {
  display: block;
  margin-bottom: 6px;
  color: var(--vc-text);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
}

.vcfp-cityCard__body span {
  color: var(--vc-teal);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

/* 9. countries */
.vcfp-countryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.vcfp-countryCard {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 28px;
  background: var(--vc-soft);
  box-shadow: var(--vc-shadow-neu-soft);
  border: var(--vc-border-soft);
}

.vcfp-countryCard img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}

.vcfp-countryCard span {
  color: var(--vc-text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

/* 10. faq */
.vcfp-faqList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vcfp-faqItem {
  border-radius: 24px;
  background: var(--vc-card);
  box-shadow: var(--vc-shadow-neu-sm);
  border: var(--vc-border-soft);
  overflow: hidden;
}

.vcfp-faqItem summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
}

.vcfp-faqItem summary::-webkit-details-marker {
  display: none;
}

.vcfp-faqItem summary span {
  color: var(--vc-text);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.vcfp-faqItem summary i {
  color: var(--vc-teal);
  transition: transform 0.25s ease;
}

.vcfp-faqItem[open] summary i {
  transform: rotate(180deg);
}

.vcfp-faqItem__body {
  padding: 0 26px 24px;
}

.vcfp-faqItem__body p {
  margin: 0;
  color: var(--vc-text2);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
}

/* responsive */
@media (max-width: 1280px) {
  .vcfp-banner__grid,
  .vcfp-contentGrid,
  .vcfp-routeOverview {
    grid-template-columns: 1fr;
  }

  .vcfp-routeMiddle {
    order: 2;
  }

  .vcfp-routeCard:first-child {
    order: 1;
  }

  .vcfp-routeCard:last-child {
    order: 3;
  }

  .vcfp-logoGrid {
    grid-template-columns: repeat(4, 1fr);
  }

  .vcfp-expGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vcfp-countryGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vcfp-banner__media {
    min-height: auto;
  }

  .vcfp-bannerCard {
    min-height: 560px;
    transform: none;
  }

  .vcfp-bannerCard img {
    min-height: 536px;
  }
}

@media (max-width: 900px) {
  .vcfp-shell,
  .vcfp-shell--narrow {
    width: min(100% - 24px, 100%);
  }

  .vcfp-section {
    padding: 64px 0;
  }

  .vcfp-logoGrid,
  .vcfp-whyGrid,
  .vcfp-seasonGrid,
  .vcfp-expGrid,
  .vcfp-countryGrid {
    grid-template-columns: 1fr;
  }

  .vcfp-contentMedia__smallWrap {
    grid-template-columns: 1fr;
  }

  .vcfp-bannerCard {
    min-height: 430px;
  }

  .vcfp-bannerCard img {
    min-height: 406px;
  }

  .vcfp-float {
    position: static;
    margin-top: 14px;
  }

  .vcfp-banner__media {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .vcfp-heading h2 {
    font-size: clamp(30px, 9vw, 46px);
  }

  .vcfp-banner__title {
    font-size: clamp(40px, 12vw, 60px);
  }

  .vcfp-routeMiddle::before,
  .vcfp-routeMiddle::after {
    display: none;
  }

  .vcfp-routeCard__media {
    height: 230px;
  }

  .vcfp-logoCard {
    height: 110px;
  }

  .vcfp-faqItem summary span {
    font-size: 19px;
  }
}
