/* ═══════════════════════════════════════════════════════════
   RACTRIP — WORLD'S BEST TRAVEL WEBSITE
   Design System: Cinematic Luxury + Editorial Precision
   Features: AI Visa Consultant, Interactive Maps, Live Search,
             Tour Builder, Booking System, Weather Widget,
             Currency Converter, Testimonial Carousel,
             Animated Stats, Package Configurator
   ═══════════════════════════════════════════════════════════ */

:root {
  --azure: #0066FF;
  --azure-dk: #0052CC;
  --azure-lt: #EEF4FF;
  --coral: #FF4D4D;
  --gold: #FFB800;
  --emerald: #00C896;
  --ink: #08090A;
  --ink-80: rgba(8,9,10,0.8);
  --ink-50: rgba(8,9,10,0.5);
  --ink-20: rgba(8,9,10,0.2);
  --ink-08: rgba(8,9,10,0.08);
  --sand: #FAF8F5;
  --white: #FFFFFF;
  --border: #E8E8E8;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 48px;
  --shadow-xs: 0 1px 4px rgba(8,9,10,0.06);
  --shadow-sm: 0 4px 16px rgba(8,9,10,0.08);
  --shadow-md: 0 12px 40px rgba(8,9,10,0.12);
  --shadow-lg: 0 24px 80px rgba(8,9,10,0.16);
  --shadow-glow: 0 0 40px rgba(0,102,255,0.25);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;font-size:16px;}
body{
  font-family:'Cabinet Grotesk',sans-serif;
  background:var(--white);color:var(--ink);
  overflow-x:hidden;-webkit-font-smoothing:antialiased;
  cursor:none;
}
a{text-decoration:none;color:inherit;}
button{cursor:none;}
img{max-width:100%;display:block;}

/* ── CUSTOM CURSOR — outline airliner (v3) ────── */
#cursor{
  position:fixed!important;width:0!important;height:0!important;
  background:none!important;border:0!important;border-radius:0!important;
  pointer-events:none;z-index:99999;
  transform:translate(-50%,-50%);
  mix-blend-mode:difference;
}
#cursor::after{
  content:""!important;position:absolute;left:0;top:0;
  width:28px;height:28px;margin:-14px 0 0 -14px;
  background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCcgZmlsbD0nbm9uZScgc3Ryb2tlPSd3aGl0ZScgc3Ryb2tlLXdpZHRoPScxLjA1JyBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBzdHJva2UtbGluZWNhcD0ncm91bmQnPjxwYXRoIGQ9J00xMiAxLjNjMS4wNSAwIDEuNyAxLjUgMS43IDMuM3Y0LjE1bDguMyA3LjA1Yy4yNS4yMi4zNS41LjM1Ljh2MS4ybC04LjY1LTMuNXYzLjdjMCAuMzIuMTMuNjIuMzcuODNsMi4wOCAxLjgydjEuMUwxMiAyMC43bC00LjE1Ljk4di0xLjFsMi4wOC0xLjgyYy4yNC0uMjEuMzctLjUxLjM3LS44M3YtMy43TDEuNjUgMTcuOHYtMS4yYzAtLjMuMS0uNTguMzUtLjhsOC4zLTcuMDVWNC42YzAtMS44LjY1LTMuMyAxLjctMy4zeicvPjwvc3ZnPg==)!important;
  background-repeat:no-repeat;background-position:center;background-size:contain;
  transform:rotate(-45deg);
  transition:transform .28s cubic-bezier(.22,1,.36,1),opacity .2s;
}
#cursor-ring{
  position:fixed!important;width:0!important;height:0!important;
  background:none!important;border:0!important;
  pointer-events:none;z-index:99998;
  transform:translate(-50%,-50%);
  transition:transform .08s linear;
  mix-blend-mode:difference;
}
#cursor-ring::after{
  content:""!important;position:absolute;left:0;top:0;
  width:42px;height:42px;margin:-21px 0 0 -21px;
  border:1px dashed rgba(255,255,255,.75);border-radius:50%;
  opacity:.5;
  animation:cursorRadar 8s linear infinite!important;
  transition:width .35s cubic-bezier(.25,.46,.45,.94),height .35s cubic-bezier(.25,.46,.45,.94),
             margin .35s cubic-bezier(.25,.46,.45,.94),opacity .3s;
}
@keyframes cursorRadar{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
body:has(a:hover) #cursor::after,
body:has(button:hover) #cursor::after{transform:rotate(-28deg) scale(1.3);}
body:has(a:hover) #cursor-ring::after,
body:has(button:hover) #cursor-ring::after{width:30px;height:30px;margin:-15px 0 0 -15px;opacity:.95;}
body:active #cursor::after{transform:rotate(-45deg) scale(.84);}
/* marker so you can confirm this file is live: search for AIRLINER-V4 */

/* ── SCROLLBAR: hidden — replaced by our own red progress line ──
   A native scrollbar always paints its gutter over the body colour,
   so a "transparent" track shows white next to dark sections. The only
   way to get a pure red line with nothing behind it is to hide the
   native bar and draw the line ourselves. Scrolling still works
   normally (wheel, touch, keyboard, drag on mobile). */
html{scrollbar-width:none;-ms-overflow-style:none;}
::-webkit-scrollbar{display:none;width:0;height:0;}
#side-progress{
  position:fixed;top:0;right:0;width:18px;height:48px;
  background:transparent;z-index:10002;
  cursor:grab;touch-action:none;
  will-change:transform;
}
#side-progress::after{
  content:"";position:absolute;top:0;bottom:0;right:3px;width:4px;
  background:#FF3B48;border-radius:4px;
  box-shadow:0 0 8px rgba(255,59,72,.55);
  transition:width .15s,right .15s;
}
#side-progress:hover::after{width:6px;right:2px;}
#side-progress.dragging{cursor:grabbing;}
#side-progress.dragging::after{width:6px;right:2px;background:#FF5A64;}

/* ── SCROLL PROGRESS ────────────────────────── */
#scroll-progress{
  position:fixed;top:0;left:0;height:2px;
  background:linear-gradient(90deg,var(--azure),var(--coral),var(--gold));
  z-index:10001;width:0%;transition:width .1s;
}

/* ── NAV ──────────────────────────────────────── */
#nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:0 48px;
  transition:all .4s cubic-bezier(.25,.46,.45,.94);
}
#nav.solid{
  background:rgba(10,19,35,.68);
  -webkit-backdrop-filter:blur(20px) saturate(155%);
  backdrop-filter:blur(20px) saturate(155%);
  box-shadow:0 8px 30px rgba(3,8,18,.30);
  border-bottom:1px solid rgba(255,255,255,.09);
}
.nav-wrap{
  max-width:1560px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  height:76px;
}
.logo{
  display:flex;align-items:center;gap:12px;
  font-family:'Fraunces',serif;font-size:26px;font-weight:900;
  color:var(--white);transition:color .3s;
  letter-spacing:-0.5px;
}
#nav.solid .logo{color:#fff;}
.logo-mark{
  width:42px;height:42px;
  background:linear-gradient(135deg,var(--azure),#4D94FF);
  border-radius:12px;display:flex;align-items:center;
  justify-content:center;font-size:20px;
  box-shadow:0 4px 14px rgba(0,102,255,.4);
}
.nav-menu{display:flex;align-items:center;gap:36px;}
.nav-menu a{
  font-size:14px;font-weight:600;color:rgba(255,255,255,.8);
  transition:color .2s;position:relative;letter-spacing:.01em;
}
.nav-menu a::after{
  content:'';position:absolute;bottom:-4px;left:0;right:0;
  height:2px;background:var(--azure);border-radius:2px;
  transform:scaleX(0);transition:transform .3s;
}
.nav-menu a:hover::after{transform:scaleX(1);}
.nav-menu a:hover{color:white;}
#nav.solid .nav-menu a{color:rgba(255,255,255,.85);}
#nav.solid .nav-menu a:hover{color:#fff;}
.nav-actions{display:flex;align-items:center;gap:12px;}
.btn-nav{
  padding:10px 24px;border-radius:var(--r-2xl);
  font-size:13px;font-weight:700;
  font-family:'Cabinet Grotesk',sans-serif;
  transition:all .25s;border:none;
}
.btn-nav-ghost{
  background:rgba(255,255,255,.15);color:white;
  border:1.5px solid rgba(255,255,255,.3);
  backdrop-filter:blur(8px);
}
.btn-nav-ghost:hover{background:rgba(255,255,255,.25);}
#nav.solid .btn-nav-ghost{
  background:rgba(255,255,255,.12);color:#fff;
  border-color:rgba(255,255,255,.28);
}
.btn-nav-fill{
  background:var(--azure);color:white;
  box-shadow:0 4px 14px rgba(0,102,255,.35);
}
.btn-nav-fill:hover{background:var(--azure-dk);transform:translateY(-1px);box-shadow:0 8px 20px rgba(0,102,255,.45);}

/* ── HERO ─────────────────────────────────────── */
.hero-shell{position:relative;overflow:hidden;}
.hero{
  min-height:100vh;position:relative;overflow:visible;
  display:flex;align-items:center;
}
.hero-bg{
  position:absolute;inset:0;
  background:linear-gradient(135deg,#050B18 0%,#0A1628 30%,#0D2240 55%,#061018 100%);
}
.hero-orbs{position:absolute;inset:0;overflow:hidden;pointer-events:none;}
.orb{
  position:absolute;border-radius:50%;filter:blur(80px);
  animation:orbFloat linear infinite;
}
.orb1{width:600px;height:600px;background:radial-gradient(circle,rgba(0,102,255,.18),transparent 70%);top:-200px;right:-100px;animation-duration:20s;}
.orb2{width:400px;height:400px;background:radial-gradient(circle,rgba(255,77,77,.12),transparent 70%);bottom:-100px;left:-50px;animation-duration:15s;}
.orb3{width:300px;height:300px;background:radial-gradient(circle,rgba(0,200,150,.1),transparent 70%);top:30%;left:30%;animation-duration:25s;}
@keyframes orbFloat{0%,100%{transform:translate(0,0) scale(1);}33%{transform:translate(40px,-30px) scale(1.05);}66%{transform:translate(-20px,20px) scale(.95);}}

/* hero grid */
.hero-grid{
  position:absolute;inset:0;opacity:.04;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.5) 1px,transparent 1px);
  background-size:60px 60px;
}
.hero-content{
  position:relative;z-index:5;
  width:100%;max-width:1560px;margin:0 auto;
  padding:120px 48px 80px;
  display:grid;grid-template-columns:1fr 1fr;
  gap:60px;align-items:center;
}
.hero-left{}
.hero-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,102,255,.15);border:1px solid rgba(0,102,255,.3);
  border-radius:var(--r-2xl);padding:7px 16px;
  font-size:12px;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:#7EB3FF;margin-bottom:28px;
  animation:slideDown .8s ease .1s both;
}
.hero-pill-dot{
  width:7px;height:7px;border-radius:50%;
  background:var(--azure);
  animation:blink 2s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(.8);}}
.hero-h1{
  font-family:'Fraunces',serif;
  font-size:clamp(48px,5.5vw,82px);
  font-weight:900;line-height:.96;
  color:white;margin-bottom:24px;
  animation:slideUp .9s ease .25s both;
  letter-spacing:-2px;
}
.hero-h1 .line-teal{
  color:transparent;
  -webkit-text-stroke:1.5px rgba(255,255,255,.3);
  font-style:italic;
}
.hero-h1 .accent{
  background:linear-gradient(135deg,#4D94FF,#00C896);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
}
.hero-sub{
  font-size:18px;font-weight:400;color:rgba(255,255,255,.55);
  line-height:1.75;max-width:500px;margin-bottom:40px;
  animation:slideUp .9s ease .4s both;
}
.hero-actions{
  display:flex;gap:16px;align-items:center;flex-wrap:wrap;
  animation:slideUp .9s ease .55s both;
}
.btn-hero-primary{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 32px;background:var(--azure);color:white;
  border-radius:var(--r-2xl);border:none;
  font-size:16px;font-weight:700;
  font-family:'Cabinet Grotesk',sans-serif;
  box-shadow:0 8px 28px rgba(0,102,255,.45);
  transition:all .3s;
}
.btn-hero-primary:hover{transform:translateY(-3px);box-shadow:0 16px 40px rgba(0,102,255,.55);}
.btn-hero-secondary{
  display:inline-flex;align-items:center;gap:10px;
  padding:16px 32px;background:rgba(255,255,255,.08);
  border:1.5px solid rgba(255,255,255,.2);
  color:white;border-radius:var(--r-2xl);
  font-size:16px;font-weight:600;
  font-family:'Cabinet Grotesk',sans-serif;
  backdrop-filter:blur(12px);transition:all .3s;
}
.btn-hero-secondary:hover{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.4);}
.play-icon{
  width:44px;height:44px;border-radius:50%;
  background:white;display:flex;align-items:center;justify-content:center;
  font-size:14px;color:var(--azure);flex-shrink:0;
  box-shadow:0 4px 14px rgba(255,255,255,.3);
}

.hero-kpis{
  display:flex;gap:32px;margin-top:52px;padding-top:36px;
  border-top:1px solid rgba(255,255,255,.1);
  animation:slideUp .9s ease .7s both;
}
.kpi-val{
  font-family:'Fraunces',serif;font-size:34px;font-weight:700;color:white;
  line-height:1;
}
.kpi-val sup{color:var(--azure);font-size:20px;}
.kpi-lbl{font-size:12px;color:rgba(255,255,255,.4);letter-spacing:.08em;text-transform:uppercase;margin-top:4px;}

/* hero right — globe visual */
.hero-right{
  display:flex;justify-content:center;align-items:center;
  position:relative;animation:slideUp .9s ease .3s both;
}
.globe-wrap{
  position:relative;width:480px;height:480px;
}
.globe-ring{
  position:absolute;inset:0;border-radius:50%;
  border:1px solid rgba(0,102,255,.2);
  animation:spin linear infinite;
}
.globe-ring:nth-child(1){animation-duration:30s;}
.globe-ring:nth-child(2){inset:30px;border-color:rgba(0,200,150,.15);animation-duration:20s;animation-direction:reverse;}
.globe-ring:nth-child(3){inset:60px;border-color:rgba(255,77,77,.1);animation-duration:40s;}
@keyframes spin{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}
.globe-center{
  position:absolute;inset:80px;border-radius:50%;
  background:linear-gradient(135deg,#0A1628,#1A3A5C,#0A2240);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 0 60px rgba(0,102,255,.3),inset 0 0 40px rgba(0,102,255,.1);
  font-size:100px;
  overflow:hidden;
}
.globe-center::after{
  content:'';position:absolute;inset:0;border-radius:50%;
  background:radial-gradient(circle at 35% 35%,rgba(255,255,255,.06),transparent 60%);
}
/* floating destination pins */
.dest-pin{
  position:absolute;display:flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.08);backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.12);border-radius:var(--r-md);
  padding:10px 14px;white-space:nowrap;
}
.dest-pin-flag{font-size:18px;}
.dest-pin-name{font-size:12px;font-weight:600;color:white;}
.dest-pin-price{font-size:11px;color:var(--azure);font-weight:700;}
.pin1{top:40px;left:-40px;animation:pinFloat 4s ease-in-out infinite;}
.pin2{top:100px;right:-60px;animation:pinFloat 4s ease-in-out infinite .8s;}
.pin3{bottom:120px;left:-60px;animation:pinFloat 4s ease-in-out infinite 1.6s;}
.pin4{bottom:60px;right:-40px;animation:pinFloat 4s ease-in-out infinite 2.4s;}
@keyframes pinFloat{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}

/* rating card */
.rating-float{
  position:absolute;bottom:-20px;left:50%;transform:translateX(-50%);
  background:white;border-radius:var(--r-lg);padding:14px 20px;
  box-shadow:var(--shadow-lg);display:flex;align-items:center;gap:14px;
  white-space:nowrap;
}
.rating-stars{color:var(--gold);font-size:16px;letter-spacing:2px;}
.rating-num{font-family:'Fraunces',serif;font-size:24px;font-weight:700;color:var(--ink);}
.rating-sub{font-size:12px;color:var(--ink-50);}
.avatar-stack{display:flex;}
.avatar-stack span{
  width:28px;height:28px;border-radius:50%;background:linear-gradient(135deg,var(--azure),var(--emerald));
  border:2px solid white;margin-left:-8px;display:flex;align-items:center;
  justify-content:center;font-size:10px;font-weight:700;color:white;
}
.avatar-stack span:first-child{margin-left:0;}

/* scroll indicator */
.hero-scroll{
  position:absolute;bottom:40px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:10px;
  font-size:11px;letter-spacing:.15em;text-transform:uppercase;
  color:rgba(255,255,255,.3);z-index:5;
}
.mouse{
  width:24px;height:38px;border:2px solid rgba(255,255,255,.2);
  border-radius:12px;display:flex;justify-content:center;padding-top:6px;
}
.mouse-dot{
  width:3px;height:8px;background:var(--azure);border-radius:3px;
  animation:mouseScroll 2.5s ease-in-out infinite;
}
@keyframes mouseScroll{0%,100%{transform:translateY(0);opacity:1;}70%{transform:translateY(12px);opacity:0;}}

/* ── SEARCH COMMAND CENTER ───────────────────── */
.search-center{
  position:relative;z-index:10;margin-top:0;
  padding:46px 48px 54px;
}
.search-box{
  max-width:1320px;margin:0 auto;
  background:white;border-radius:var(--r-xl);
  box-shadow:var(--shadow-lg),0 0 0 1px var(--ink-08);
  overflow:visible;
}
.search-tabs{border-radius:var(--r-xl) var(--r-xl) 0 0;}
.search-tags{border-radius:0 0 var(--r-xl) var(--r-xl);}
.search-tabs{
  display:flex;background:var(--sand);
  border-bottom:1px solid var(--border);
  padding:4px 4px 0;gap:2px;
}
.stab{
  padding:11px 20px;border-radius:8px 8px 0 0;
  font-size:13px;font-weight:700;color:var(--ink-50);
  border:none;background:transparent;cursor:none;
  display:flex;align-items:center;gap:7px;
  font-family:'Cabinet Grotesk',sans-serif;
  transition:all .2s;
}
.stab.on{background:white;color:var(--azure);box-shadow:0 -2px 0 var(--azure) inset;}
.stab:hover:not(.on){background:rgba(0,102,255,.05);color:var(--azure);}
.stab-ico{font-size:16px;}
.search-body{
  display:grid;grid-template-columns:2.5fr 1.2fr 1.2fr 1fr auto;
  align-items:stretch;min-height:80px;
}
.sf{
  padding:0 24px;display:flex;flex-direction:column;
  justify-content:center;border-right:1px solid var(--border);
  transition:background .2s;cursor:text;
}
.sf:hover{background:#FAFCFF;}
.sf-lbl{
  font-size:10px;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--ink-50);margin-bottom:4px;
}
.sf input,.sf select{
  border:none;background:transparent;font-size:15px;font-weight:600;
  color:var(--ink);font-family:'Cabinet Grotesk',sans-serif;
  outline:none;width:100%;
}
.sf select{cursor:pointer;appearance:none;}
.sf input::placeholder{color:#C0C8D4;font-weight:400;}
.search-go{
  padding:0 28px;background:var(--azure);color:white;border:none;
  font-size:15px;font-weight:800;font-family:'Cabinet Grotesk',sans-serif;
  display:flex;align-items:center;gap:10px;
  transition:all .25s;white-space:nowrap;cursor:none;
}
.search-go:hover{background:var(--azure-dk);}
.search-go svg{width:20px;height:20px;transition:transform .25s;}
.search-go:hover svg{transform:translateX(4px);}
.search-tags{
  padding:12px 24px;display:flex;align-items:center;gap:12px;
  border-top:1px solid var(--border);background:var(--sand);flex-wrap:wrap;
}
.tag-label{font-size:12px;font-weight:700;color:var(--ink-50);}
.tag{
  padding:5px 14px;border-radius:var(--r-2xl);
  border:1.5px solid var(--border);font-size:12px;font-weight:600;
  color:var(--ink-80);cursor:none;transition:all .2s;background:white;
  display:flex;align-items:center;gap:5px;
}
.tag:hover,.tag.sel{border-color:var(--azure);color:var(--azure);background:var(--azure-lt);}

/* ── SECTION BASE ─────────────────────────────── */
.section{padding:96px 48px;}
.sec-head{margin-bottom:56px;}
.sec-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--azure);margin-bottom:14px;
}
.sec-eyebrow::before{content:'';width:24px;height:2px;background:var(--azure);display:inline-block;border-radius:2px;}
.sec-h2{
  font-family:'Fraunces',serif;
  font-size:clamp(36px,4vw,56px);font-weight:900;
  color:var(--ink);line-height:1.0;letter-spacing:-1.5px;
  margin-bottom:16px;
}
.sec-h2 em{color:var(--azure);font-style:italic;}
.sec-p{font-size:17px;color:var(--ink-50);line-height:1.75;max-width:580px;}
.sec-row{display:flex;justify-content:space-between;align-items:flex-end;gap:32px;}

/* ── STATS TICKER ────────────────────────────── */
.stats-bar{
  background:var(--ink);padding:0 48px;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.stats-inner{
  max-width:1560px;margin:0 auto;
  display:grid;grid-template-columns:repeat(6,1fr);
}
.stat-cell{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:28px 16px;border-right:1px solid rgba(255,255,255,.06);
  text-align:center;
}
.stat-cell:last-child{border-right:none;}
.stat-n{
  font-family:'Fraunces',serif;font-size:32px;font-weight:700;
  color:white;line-height:1;
}
.stat-n .stat-accent{color:var(--azure);}
.stat-l{font-size:11px;color:rgba(255,255,255,.35);letter-spacing:.08em;text-transform:uppercase;margin-top:5px;}

/* ── DESTINATIONS GRID ────────────────────────── */
.dest-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  grid-template-rows:260px 220px;
  gap:14px;
}
.dc{
  position:relative;overflow:hidden;border-radius:var(--r-lg);
  cursor:none;display:flex;align-items:flex-end;
}
.dc:nth-child(1){grid-column:span 5;grid-row:span 2;}
.dc:nth-child(2){grid-column:span 4;}
.dc:nth-child(3){grid-column:span 3;}
.dc:nth-child(4){grid-column:span 3;}
.dc:nth-child(5){grid-column:span 4;}
.dc-img{
  position:absolute;inset:0;
  transition:transform .7s cubic-bezier(.25,.46,.45,.94);
}
.dc:hover .dc-img{transform:scale(1.08);}
.dc-grad{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(8,9,10,.85) 0%,rgba(8,9,10,.2) 50%,transparent 100%);
}
.dc-body{position:relative;z-index:2;padding:20px 22px;width:100%;}
.dc-flag{font-size:20px;margin-bottom:6px;}
.dc-country{font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.55);}
.dc-city{
  font-family:'Fraunces',serif;font-weight:700;color:white;line-height:1.1;
  font-size:clamp(18px,2vw,26px);margin:4px 0 8px;
}
.dc:nth-child(1) .dc-city{font-size:38px;}
.dc-bottom{display:flex;justify-content:space-between;align-items:center;}
.dc-from{font-size:11px;color:rgba(255,255,255,.5);}
.dc-price{font-size:16px;font-weight:800;color:var(--azure);}
.dc-tag{
  position:absolute;top:14px;right:14px;z-index:3;
  padding:5px 12px;border-radius:var(--r-2xl);font-size:11px;font-weight:800;
  animation:none;
}
.tag-hot{background:var(--coral);color:white;}
.tag-new{background:var(--emerald);color:white;}
.tag-deal{background:var(--gold);color:var(--ink);}
.dc-hover-btn{
  position:absolute;bottom:20px;right:20px;z-index:3;
  background:white;color:var(--ink);border-radius:var(--r-2xl);
  padding:7px 16px;font-size:12px;font-weight:800;
  opacity:0;transform:translateY(8px);transition:all .3s;
}
.dc:hover .dc-hover-btn{opacity:1;transform:translateY(0);}
/* gradient backgrounds */
.bg-bali{background:linear-gradient(145deg,#0D4A3A,#1A6E5A,#0A3A5C);}
.bg-dubai{background:linear-gradient(145deg,#1A2D4A,#2D4A6E,#2A1A00);}
.bg-china{background:linear-gradient(145deg,#5C0D12,#8B1A22,#B8860B);}
.bg-maldives{background:linear-gradient(145deg,#0A2A4A,#1A4A6E,#0A1A3A);}
.bg-istanbul{background:linear-gradient(145deg,#3D2A0D,#5C3A0D,#2A0D0D);}
.bg-singapore{background:linear-gradient(145deg,#0D3D3D,#1A5C5C,#0A2A3D);}
.bg-tokyo{background:linear-gradient(145deg,#2D0D3D,#4A1A5C,#1A0A2D);}

/* ── TOUR PACKAGES ────────────────────────────── */
.tours-section{background:var(--sand);}
.tour-filter-bar{
  display:flex;gap:10px;margin-bottom:40px;flex-wrap:wrap;align-items:center;
}
.tf-btn{
  padding:9px 20px;border-radius:var(--r-2xl);border:1.5px solid var(--border);
  font-size:13px;font-weight:700;color:var(--ink-50);background:white;
  cursor:none;transition:all .2s;font-family:'Cabinet Grotesk',sans-serif;
}
.tf-btn.on,.tf-btn:hover{border-color:var(--azure);color:var(--azure);background:var(--azure-lt);}
.tours-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
}
.tc{
  background:white;border-radius:var(--r-xl);overflow:hidden;
  box-shadow:var(--shadow-xs);border:1px solid var(--border);
  transition:all .4s cubic-bezier(.25,.46,.45,.94);
  cursor:none;
}
.tc:hover{transform:translateY(-10px);box-shadow:var(--shadow-md);border-color:rgba(0,102,255,.15);}
.tc-img{height:230px;position:relative;overflow:hidden;}
.tc-bg{width:100%;height:100%;transition:transform .6s cubic-bezier(.25,.46,.45,.94);}
.tc:hover .tc-bg{transform:scale(1.07);}
.tc-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(8,9,10,.65) 0%,transparent 55%);
}
.tc-badges{position:absolute;top:14px;left:14px;display:flex;gap:7px;z-index:2;}
.tc-b{padding:4px 11px;border-radius:var(--r-2xl);font-size:11px;font-weight:800;}
.tc-b.hot{background:var(--coral);color:white;}
.tc-b.deal{background:var(--gold);color:var(--ink);}
.tc-b.new{background:var(--emerald);color:white;}
.tc-b.prem{background:var(--azure);color:white;}
.tc-wish{
  position:absolute;top:14px;right:14px;z-index:2;
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.2);backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;transition:all .25s;border:1px solid rgba(255,255,255,.2);
  cursor:none;
}
.tc-wish:hover,.tc-wish.on{background:white;color:var(--coral);}
.tc-dur{
  position:absolute;bottom:14px;left:14px;z-index:2;
  background:rgba(255,255,255,.12);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.2);border-radius:var(--r-2xl);
  padding:5px 12px;font-size:11px;font-weight:700;color:white;
}
.tc-body{padding:22px 22px 20px;}
.tc-loc{
  display:flex;align-items:center;gap:5px;
  font-size:12px;color:var(--ink-50);margin-bottom:8px;
}
.tc-loc-dot{width:6px;height:6px;border-radius:50%;background:var(--azure);flex-shrink:0;}
.tc-title{
  font-family:'Fraunces',serif;font-size:20px;font-weight:700;
  color:var(--ink);margin-bottom:10px;line-height:1.2;
  transition:color .2s;
}
.tc:hover .tc-title{color:var(--azure);}
.tc-rating{display:flex;align-items:center;gap:6px;margin-bottom:16px;}
.tc-stars{color:var(--gold);font-size:13px;letter-spacing:2px;}
.tc-rv{font-size:13px;font-weight:700;color:var(--ink);}
.tc-rn{font-size:12px;color:var(--ink-50);}
.tc-highlights{
  display:flex;flex-wrap:wrap;gap:6px;margin-bottom:18px;
}
.tc-hl{
  padding:4px 11px;background:var(--sand);border-radius:var(--r-sm);
  font-size:11px;font-weight:600;color:var(--ink-50);
}
.tc-foot{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:16px;border-top:1px solid var(--border);
}
.tc-pr-lbl{font-size:11px;color:var(--ink-50);text-transform:uppercase;letter-spacing:.06em;}
.tc-pr{
  font-family:'Fraunces',serif;font-size:24px;font-weight:700;
  color:var(--ink);line-height:1;
}
.tc-pr sub{font-size:12px;font-weight:500;color:var(--ink-50);font-family:'Cabinet Grotesk',sans-serif;}
.tc-pr-old{font-size:12px;color:var(--ink-50);text-decoration:line-through;margin-top:1px;}
.btn-book{
  padding:10px 22px;background:var(--azure);color:white;border:none;
  border-radius:var(--r-2xl);font-size:13px;font-weight:800;
  font-family:'Cabinet Grotesk',sans-serif;
  transition:all .25s;cursor:none;
}
.btn-book:hover{background:var(--azure-dk);transform:scale(1.05);}

/* ── AI VISA CONSULTANT ──────────────────────── */
.visa-ai-section{
  background:linear-gradient(135deg,#04080F 0%,#0A1628 40%,#061018 100%);
  padding:96px 48px;position:relative;overflow:hidden;
}
.vai-bg{position:absolute;inset:0;}
.vai-mesh{
  position:absolute;inset:0;opacity:.06;
  background-image:
    linear-gradient(rgba(0,102,255,.8) 1px,transparent 1px),
    linear-gradient(90deg,rgba(0,102,255,.8) 1px,transparent 1px);
  background-size:48px 48px;
}
.vai-glow1{position:absolute;top:-200px;left:-200px;width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(0,102,255,.12),transparent 60%);pointer-events:none;}
.vai-glow2{position:absolute;bottom:-200px;right:-100px;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(0,200,150,.08),transparent 60%);pointer-events:none;}
.vai-inner{
  max-width:1320px;margin:0 auto;position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1.2fr;gap:80px;align-items:stretch;
}
.vai-left{padding-top:16px;}
.vai-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(0,102,255,.15);border:1px solid rgba(0,102,255,.3);
  border-radius:var(--r-2xl);padding:7px 16px;
  font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
  color:#7EB3FF;margin-bottom:24px;
}
.vai-badge-pulse{
  width:8px;height:8px;border-radius:50%;background:var(--emerald);
  animation:blink 1.5s ease-in-out infinite;
  box-shadow:0 0 8px var(--emerald);
}
.vai-h2{
  font-family:'Fraunces',serif;font-size:clamp(36px,4vw,54px);
  font-weight:900;color:white;line-height:1.0;letter-spacing:-1.5px;
  margin-bottom:16px;
}
.vai-h2 em{color:var(--azure);font-style:italic;}
.vai-p{font-size:16px;color:rgba(255,255,255,.5);line-height:1.75;margin-bottom:36px;}
.vai-features{display:flex;flex-direction:column;gap:14px;margin-bottom:40px;}
.vai-feat{
  display:flex;align-items:flex-start;gap:12px;
  padding:16px;background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);border-radius:var(--r-md);
  transition:all .3s;
}
.vai-feat:hover{background:rgba(0,102,255,.08);border-color:rgba(0,102,255,.2);}
.vai-feat-ico{
  width:40px;height:40px;border-radius:10px;
  background:rgba(0,102,255,.2);display:flex;align-items:center;
  justify-content:center;font-size:18px;flex-shrink:0;
}
.vai-feat-title{font-size:14px;font-weight:700;color:white;margin-bottom:3px;}
.vai-feat-desc{font-size:13px;color:rgba(255,255,255,.4);line-height:1.5;}
.vai-stats-row{display:flex;gap:28px;}
.vai-stat{text-align:center;}
.vai-stat-n{font-family:'Fraunces',serif;font-size:28px;font-weight:700;color:var(--azure);}
.vai-stat-l{font-size:11px;color:rgba(255,255,255,.35);text-transform:uppercase;letter-spacing:.06em;margin-top:3px;}

/* AI CHAT WINDOW */
.vai-chat{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;overflow:hidden;
  backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);
  box-shadow:
    0 0 0 1px rgba(120,175,255,.10),
    0 0 42px rgba(64,140,255,.22),
    0 0 110px rgba(0,102,255,.14),
    0 24px 60px rgba(0,0,0,.35);
  display:flex;flex-direction:column;
  height:100%;min-height:640px;  /* matches the section column exactly */
  max-height:960px;
  contain:size;                  /* the card's height is INDEPENDENT of the chat content:
                                    long conversations scroll inside instead of
                                    stretching the card and the whole section */
}
.chat-header{
  padding:16px 20px;
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,.07);
  display:flex;align-items:center;gap:12px;
}
.chat-avatar{
  width:36px;height:36px;border-radius:11px;flex-shrink:0;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-size:17px;font-weight:700;font-style:italic;color:#CFE0FF;
  box-shadow:inset 0 0 14px rgba(64,140,255,.15);
}
.chat-hname{
  font-family:'Fraunces',serif;font-size:19px;font-weight:700;font-style:italic;letter-spacing:.02em;
  background:linear-gradient(95deg,#FFFFFF 20%,#8FB8FF 90%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  line-height:1.1;
}
.chat-hsub{font-size:10px;color:rgba(255,255,255,.40);margin-top:3px;
  text-transform:uppercase;letter-spacing:.22em;font-weight:600;}
.chat-hstate{
  margin-left:auto;display:flex;align-items:center;gap:6px;
  font-size:11px;font-weight:600;color:rgba(255,255,255,.45);letter-spacing:.04em;
}
.chat-hdot{width:6px;height:6px;border-radius:50%;background:var(--emerald);}
.chat-body{
  flex:1;min-height:0;overflow-y:auto;padding:22px 20px;
  display:flex;flex-direction:column;gap:16px;
  scrollbar-width:thin;scrollbar-color:rgba(255,255,255,.1) transparent;
}
.chat-body::-webkit-scrollbar{width:3px;}
.chat-body::-webkit-scrollbar-thumb{background:rgba(255,255,255,.1);border-radius:3px;}
.msg{max-width:86%;display:flex;flex-direction:column;gap:4px;}
.msg.ai{align-self:flex-start;}
.msg.user{align-self:flex-end;}
.msg-bubble{padding:12px 15px;border-radius:14px;font-size:13.8px;line-height:1.62;}
.msg.ai .msg-bubble{
  background:rgba(255,255,255,.05);color:rgba(255,255,255,.86);
  border-radius:4px 14px 14px 14px;
}
.msg.user .msg-bubble{
  background:var(--azure);color:#fff;
  border-radius:14px 14px 4px 14px;
}
.msg-time{font-size:10px;color:rgba(255,255,255,.22);padding:0 4px;}
.msg.user .msg-time{text-align:right;}
.msg-bubble strong{color:#8FB8FF;font-weight:700;}
.msg.user .msg-bubble strong{color:rgba(255,255,255,.95);}
/* quick suggestion chips */
.quick-chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:6px;}
.qchip{
  padding:6px 13px;background:transparent;
  border:1px solid rgba(255,255,255,.15);border-radius:100px;
  font-size:12px;font-weight:600;color:rgba(255,255,255,.55);
  transition:all .2s;
}
.qchip:hover{border-color:rgba(0,102,255,.55);color:#9CC2FF;background:rgba(0,102,255,.08);}
/* typing indicator */
.typing{
  display:flex;align-items:center;gap:5px;
  padding:12px 15px;background:rgba(255,255,255,.05);
  border-radius:4px 14px 14px 14px;width:fit-content;
}
.typing span{
  width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.4);
  animation:typingDot .9s ease-in-out infinite;
}
.typing span:nth-child(2){animation-delay:.2s;}
.typing span:nth-child(3){animation-delay:.4s;}
@keyframes typingDot{0%,80%,100%{transform:scale(1);opacity:.4;}40%{transform:scale(1.3);opacity:1;}}
.chat-footer{
  padding:14px 16px;border-top:1px solid rgba(255,255,255,.07);
  display:flex;gap:10px;background:transparent;
}
.chat-input{
  flex:1;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  border-radius:100px;padding:12px 18px;font-size:13.8px;color:#fff;
  font-family:'Cabinet Grotesk',sans-serif;outline:none;transition:border-color .2s;
}
.chat-input:focus{border-color:rgba(0,102,255,.5);}
.chat-input::placeholder{color:rgba(255,255,255,.28);}
.chat-send{
  width:44px;height:44px;border-radius:50%;background:var(--azure);
  border:none;color:#fff;font-size:16px;
  display:flex;align-items:center;justify-content:center;
  transition:all .2s;flex-shrink:0;
}
.chat-send:hover{filter:brightness(1.12);}

@media (max-width:860px){
  .vai-chat{min-height:560px;}
  .chat-body{min-height:380px;}
}

/* ── WHY SECTION ─────────────────────────────── */
.why-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
.wc{
  padding:36px 28px;border-radius:var(--r-xl);border:1.5px solid var(--border);
  position:relative;overflow:hidden;transition:all .4s;cursor:default;
}
.wc::before{
  content:'';position:absolute;inset:0;opacity:0;
  background:linear-gradient(135deg,var(--azure-lt),transparent 60%);
  transition:opacity .4s;
}
.wc:hover{border-color:var(--azure);transform:translateY(-6px);box-shadow:var(--shadow-md);}
.wc:hover::before{opacity:1;}
.wc-num{
  font-family:'Fraunces',serif;font-size:56px;font-weight:900;
  color:var(--ink-08);line-height:1;margin-bottom:16px;
  position:relative;z-index:1;
}
.wc-icon{
  width:58px;height:58px;border-radius:16px;background:var(--azure-lt);
  display:flex;align-items:center;justify-content:center;font-size:28px;
  margin-bottom:20px;position:relative;z-index:1;transition:all .3s;
}
.wc:hover .wc-icon{background:var(--azure);transform:rotate(-5deg) scale(1.08);}
.wc-title{
  font-family:'Fraunces',serif;font-size:20px;font-weight:700;
  color:var(--ink);margin-bottom:10px;position:relative;z-index:1;
}
.wc-desc{font-size:14px;color:var(--ink-50);line-height:1.7;position:relative;z-index:1;}

/* ── TESTIMONIALS ────────────────────────────── */
.testi-section{background:var(--sand);}
.testi-track{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  transition:all .4s;
}
.tcard-t{
  background:white;border-radius:var(--r-xl);padding:32px;
  box-shadow:var(--shadow-xs);border:1.5px solid var(--border);
  transition:all .35s;cursor:default;
}
.tcard-t:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:var(--azure);}
.tcard-quote{
  font-size:48px;font-family:'Fraunces',serif;
  color:var(--azure);opacity:.2;line-height:.8;margin-bottom:16px;
}
.tcard-text{
  font-size:15px;color:var(--ink-80);line-height:1.8;margin-bottom:24px;
  font-style:italic;
}
.tcard-author{
  display:flex;align-items:center;gap:14px;
  padding-top:20px;border-top:1px solid var(--border);
}
.t-av{
  width:48px;height:48px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:16px;color:white;
}
.t-name{font-size:15px;font-weight:800;color:var(--ink);}
.t-detail{font-size:12px;color:var(--ink-50);margin-top:2px;}
.t-stars{color:var(--gold);font-size:14px;letter-spacing:2px;margin-top:2px;}
.t-badge{
  margin-left:auto;padding:5px 13px;border-radius:var(--r-2xl);
  font-size:11px;font-weight:800;background:var(--azure-lt);color:var(--azure);
}

/* ── PACKAGE CONFIGURATOR ────────────────────── */
.configurator{
  background:linear-gradient(135deg,#F0F5FF,#F8FFF9);
  border-radius:var(--r-2xl);padding:48px;
  border:1.5px solid rgba(0,102,255,.12);
  box-shadow:var(--shadow-sm);
}
.config-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;}
.config-left{}
.config-step{display:flex;flex-direction:column;gap:24px;}
.cs{
  background:white;border-radius:var(--r-lg);padding:24px;
  border:1.5px solid var(--border);transition:all .3s;
}
.cs.active{border-color:var(--azure);box-shadow:0 0 0 3px var(--azure-lt);}
.cs-num{
  font-size:11px;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:var(--azure);margin-bottom:8px;
}
.cs-title{font-size:16px;font-weight:800;color:var(--ink);margin-bottom:16px;}
.cs-options{display:flex;flex-wrap:wrap;gap:8px;}
.cs-opt{
  padding:8px 16px;border-radius:var(--r-2xl);border:1.5px solid var(--border);
  font-size:13px;font-weight:700;color:var(--ink-50);background:white;
  cursor:none;transition:all .2s;font-family:'Cabinet Grotesk',sans-serif;
}
.cs-opt:hover,.cs-opt.on{border-color:var(--azure);color:var(--azure);background:var(--azure-lt);}
.cs-slider{display:flex;flex-direction:column;gap:8px;}
.cs-slider input[type=range]{
  width:100%;appearance:none;height:4px;background:var(--border);
  border-radius:4px;outline:none;cursor:pointer;
}
.cs-slider input[type=range]::-webkit-slider-thumb{
  appearance:none;width:20px;height:20px;border-radius:50%;
  background:var(--azure);cursor:pointer;
  box-shadow:0 2px 8px rgba(0,102,255,.4);
}
.cs-slider-labels{display:flex;justify-content:space-between;font-size:12px;color:var(--ink-50);}
.cs-slider-val{font-size:18px;font-weight:800;color:var(--azure);text-align:center;}
/* price estimate panel */
.config-right{}
.price-panel{
  background:white;border-radius:var(--r-xl);padding:28px;
  border:1.5px solid var(--border);box-shadow:var(--shadow-sm);
}
.tb-right-stick{position:sticky;top:90px;display:flex;flex-direction:column;}
.tb-right-stick .tb-map-card{margin-top:16px;}
#tbMap .leaflet-control-zoom{border:none;border-radius:12px;overflow:hidden;box-shadow:0 8px 22px rgba(8,16,28,.18);}
#tbMap .leaflet-control-zoom a{width:32px;height:32px;line-height:32px;font-size:16px;color:#0A1526;}
#tbMap .leaflet-control-zoom a:hover{background:#0066FF;color:#fff;}
.pp-title{font-family:'Fraunces',serif;font-size:22px;font-weight:700;color:var(--ink);margin-bottom:20px;}
.pp-line{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 0;border-bottom:1px solid var(--border);font-size:14px;
}
.pp-line:last-of-type{border:none;}
.pp-line-label{color:var(--ink-50);font-weight:500;}
.pp-line-val{font-weight:700;color:var(--ink);}
.pp-total{
  padding:16px;background:var(--azure-lt);border-radius:var(--r-md);
  display:flex;justify-content:space-between;align-items:center;
  margin-top:16px;border:1px solid rgba(0,102,255,.15);
}
.pp-total-label{font-size:13px;font-weight:700;color:var(--azure);}
.pp-total-val{
  font-family:'Fraunces',serif;font-size:28px;font-weight:900;color:var(--azure);
}
.btn-config{
  width:100%;margin-top:20px;padding:16px;
  background:var(--azure);color:white;border:none;border-radius:var(--r-lg);
  font-size:16px;font-weight:800;font-family:'Cabinet Grotesk',sans-serif;
  cursor:none;transition:all .3s;
  box-shadow:0 6px 20px rgba(0,102,255,.35);
}
.btn-config:hover{background:var(--azure-dk);transform:translateY(-2px);box-shadow:0 10px 28px rgba(0,102,255,.45);}

/* ── WEATHER WIDGET ──────────────────────────── */
.weather-strip{
  background:var(--ink);padding:40px 48px;
}
.weather-inner{
  max-width:1560px;margin:0 auto;
  display:flex;gap:0;
  overflow-x:auto;overscroll-behavior-x:contain;
  scrollbar-width:none;-ms-overflow-style:none;
  cursor:grab;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 4%,#000 96%,transparent);
}
.weather-inner::-webkit-scrollbar{display:none;}
.weather-inner:active{cursor:grabbing;}
.ww-set{display:flex;gap:16px;flex:0 0 auto;padding-right:16px;}
.ww-card{
  flex:0 0 148px;width:148px;
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r-lg);padding:20px 14px;text-align:center;
  transition:background .3s,border-color .3s;
}
.ww-card:hover{background:rgba(0,102,255,.1);border-color:rgba(0,102,255,.3);}
.ww-city{font-size:13px;font-weight:700;color:rgba(255,255,255,.5);margin-bottom:8px;letter-spacing:.04em;}
.ww-icon{margin-bottom:8px;display:flex;justify-content:center;align-items:center;height:44px;}
.ww-icon .wsvg{width:44px;height:44px;display:block;}
.ww-title-ic{display:inline-flex;}
.ww-title-ic .wsvg{width:30px;height:30px;display:block;}
.ww-temp{font-family:'Fraunces',serif;font-size:24px;font-weight:700;color:white;}
.ww-cond{font-size:11px;color:rgba(255,255,255,.35);margin-top:4px;}

/* ── CURRENCY CONVERTER ──────────────────────── */
.currency-section{padding:80px 48px;background:var(--sand);}
.curr-card{
  max-width:700px;margin:0 auto;
  background:white;border-radius:var(--r-xl);padding:32px;
  box-shadow:var(--shadow-md);border:1.5px solid var(--border);
}
.curr-grid{display:grid;grid-template-columns:1fr auto 1fr;gap:16px;align-items:end;margin-bottom:24px;}
.curr-field{min-width:0;}
.curr-label{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--ink-50);margin-bottom:8px;}
.curr-input-wrap{
  display:flex;align-items:stretch;border:2px solid var(--border);border-radius:var(--r-md);
  overflow:hidden;transition:border-color .2s;min-width:0;
}
.curr-input-wrap:focus-within{border-color:var(--azure);}
.curr-select{
  flex:0 0 auto;padding:12px 8px 12px 12px;background:var(--sand);border:none;border-right:1px solid var(--border);
  font-size:13.5px;font-weight:700;color:var(--ink);font-family:'Cabinet Grotesk',sans-serif;
  outline:none;cursor:pointer;
}
.curr-amount{
  flex:1 1 auto;min-width:0;width:100%;padding:12px 14px;border:none;outline:none;
  font-size:19px;font-weight:800;font-family:'Fraunces',serif;color:var(--ink);background:#fff;
}
.curr-amount::-webkit-outer-spin-button,.curr-amount::-webkit-inner-spin-button{-webkit-appearance:none;margin:0;}
.curr-swap{
  flex:0 0 auto;width:44px;height:44px;border-radius:50%;background:var(--azure-lt);
  border:1.5px solid rgba(0,102,255,.2);cursor:pointer;
  display:flex;align-items:center;justify-content:center;font-size:18px;
  transition:all .3s;margin-bottom:1px;
}
.curr-swap:hover{background:var(--azure);color:white;transform:rotate(180deg);}
.curr-result{
  text-align:center;padding:20px;background:var(--azure-lt);
  border-radius:var(--r-md);border:1px solid rgba(0,102,255,.15);
}
.curr-result-val{
  font-family:'Fraunces',serif;font-size:32px;font-weight:900;color:var(--azure);line-height:1.15;
}
.curr-result-sub{font-size:13px;color:var(--azure);opacity:.7;margin-top:4px;}

/* ── NEWSLETTER ──────────────────────────────── */
.nl-section{padding:80px 48px;}
.nl-card{
  max-width:900px;margin:0 auto;
  background:var(--azure);border-radius:var(--r-2xl);
  padding:60px;text-align:center;position:relative;overflow:hidden;
  box-shadow:0 24px 70px rgba(0,102,255,.35);
}
.nl-dots{
  position:absolute;inset:0;opacity:.12;
  background-image:radial-gradient(circle,rgba(255,255,255,.8) 1px,transparent 1px);
  background-size:24px 24px;
}
.nl-circle1{position:absolute;top:-60px;right:-60px;width:200px;height:200px;border-radius:50%;background:rgba(255,255,255,.08);pointer-events:none;}
.nl-circle2{position:absolute;bottom:-80px;left:-40px;width:250px;height:250px;border-radius:50%;background:rgba(255,255,255,.06);pointer-events:none;}
.nl-h2{
  font-family:'Fraunces',serif;font-size:40px;font-weight:900;color:white;
  margin-bottom:10px;position:relative;z-index:1;
}
.nl-p{font-size:17px;color:rgba(255,255,255,.75);margin-bottom:36px;position:relative;z-index:1;}
.nl-form{
  display:flex;max-width:500px;margin:0 auto;
  background:rgba(255,255,255,.12);border-radius:var(--r-2xl);
  overflow:hidden;border:1.5px solid rgba(255,255,255,.2);
  position:relative;z-index:1;
  backdrop-filter:blur(10px);
}
.nl-in{
  flex:1;padding:16px 22px;background:transparent;border:none;
  font-size:15px;font-family:'Cabinet Grotesk',sans-serif;
  color:white;outline:none;
}
.nl-in::placeholder{color:rgba(255,255,255,.4);}
.nl-btn{
  padding:14px 28px;background:white;color:var(--azure);border:none;
  font-size:14px;font-weight:800;font-family:'Cabinet Grotesk',sans-serif;
  cursor:none;transition:all .25s;white-space:nowrap;border-radius:var(--r-2xl);margin:4px;
}
.nl-btn:hover{background:var(--azure-lt);}

/* ── FOOTER ──────────────────────────────────── */
footer{
  background:var(--ink);padding:80px 48px 0;
}
.footer-grid{
  max-width:1560px;margin:0 auto;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:56px;
  padding-bottom:60px;border-bottom:1px solid rgba(255,255,255,.07);
}
.footer-brand{}
.footer-logo-wrap{
  font-family:'Fraunces',serif;font-size:28px;font-weight:900;
  color:white;display:flex;align-items:center;gap:12px;margin-bottom:16px;
}
.footer-desc{font-size:14px;color:rgba(255,255,255,.4);line-height:1.8;margin-bottom:24px;max-width:300px;}
.footer-badges{display:flex;gap:10px;flex-wrap:wrap;}
.ft-badge{
  padding:6px 14px;border-radius:var(--r-2xl);border:1px solid rgba(255,255,255,.12);
  font-size:11px;font-weight:700;color:rgba(255,255,255,.4);
}
.footer-social{display:flex;gap:10px;margin-top:20px;}
.fsoc{
  width:40px;height:40px;border-radius:12px;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;font-size:16px;
  cursor:none;transition:all .25s;color:rgba(255,255,255,.5);
}
.fsoc:hover{background:var(--azure);border-color:var(--azure);color:white;transform:translateY(-3px);}
.footer-col h4{font-size:13px;font-weight:800;color:white;letter-spacing:.04em;margin-bottom:20px;}
.footer-col a{
  display:block;font-size:14px;color:rgba(255,255,255,.4);
  margin-bottom:12px;transition:color .2s;cursor:none;
}
.footer-col a:hover{color:var(--azure);}
.footer-bottom{
  max-width:1560px;margin:0 auto;padding:24px 0;
  display:flex;justify-content:space-between;align-items:center;
  font-size:13px;color:rgba(255,255,255,.25);
}
.footer-bottom a{color:var(--azure);}

/* ── WA FAB ──────────────────────────────────── */
.wa-fab{
  position:fixed;bottom:32px;right:32px;z-index:9999;
  width:60px;height:60px;border-radius:50%;background:#25D366;
  display:flex;align-items:center;justify-content:center;
  font-size:28px;box-shadow:0 6px 24px rgba(37,211,102,.45);
  animation:waPulse 3s ease-in-out infinite;cursor:none;
  text-decoration:none;transition:transform .25s;
}
.wa-fab:hover{transform:scale(1.1);}
@keyframes waPulse{0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.45)}50%{box-shadow:0 6px 40px rgba(37,211,102,.7)}}
.wa-tip{
  position:absolute;right:70px;background:var(--ink);color:white;
  font-size:12px;font-weight:700;padding:7px 14px;border-radius:8px;
  white-space:nowrap;opacity:0;transition:opacity .3s;
  font-family:'Cabinet Grotesk',sans-serif;
}
.wa-tip::after{
  content:'';position:absolute;right:-6px;top:50%;transform:translateY(-50%);
  border:6px solid transparent;border-left-color:var(--ink);border-right:none;
}
.wa-fab:hover .wa-tip{opacity:1;}

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes slideUp{from{opacity:0;transform:translateY(36px);}to{opacity:1;transform:translateY(0);}}
@keyframes slideDown{from{opacity:0;transform:translateY(-16px);}to{opacity:1;transform:translateY(0);}}
.reveal{opacity:0;transform:translateY(32px);transition:opacity .8s cubic-bezier(.25,.46,.45,.94),transform .8s cubic-bezier(.25,.46,.45,.94);}
.reveal.in{opacity:1;transform:translateY(0);}
.reveal-1{transition-delay:.1s;}
.reveal-2{transition-delay:.2s;}
.reveal-3{transition-delay:.3s;}
.reveal-4{transition-delay:.4s;}

/* ============================================================
   MOBILE RESPONSIVE FIXES  (added — desktop layout unchanged)
   ============================================================ */
html,body{max-width:100%;overflow-x:hidden;overflow-x:clip;}
img,video,canvas{max-width:100%;}

/* Hamburger button — hidden on desktop */
.nav-toggle{display:none;background:transparent;border:0;width:46px;height:46px;
  flex-direction:column;justify-content:center;gap:5px;cursor:pointer;padding:0;color:#fff;}
#nav.solid .nav-toggle{color:#fff;}
.nav-toggle span{display:block;width:26px;height:2.5px;background:currentColor;border-radius:2px;margin:0 auto;transition:.28s;}
.nav-toggle.on span:nth-child(1){transform:translateY(7.5px) rotate(45deg);}
.nav-toggle.on span:nth-child(2){opacity:0;}
.nav-toggle.on span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg);}
.mobile-cta{display:none;}

/* On touch devices: hide the custom cursor, restore normal pointer */
@media (hover:none),(pointer:coarse){
  #cursor,#cursor-ring{display:none!important;}
  *{cursor:auto!important;}
  a,button,.btn-nav,.tf-btn,.search-go,.dc,.tc{cursor:pointer!important;}
}

@media (max-width:960px){
  /* ---- neutralise off-screen decorative elements (the crop/gap cause) ---- */
  .vai-glow1,.vai-glow2,.nl-circle1,.nl-circle2,.nl-dots{display:none!important;}
  .hero,.section,.tours-section,.visa-ai-section,.stats-section,.testi-section,
  .nl-section,footer,.vai-inner{overflow-x:clip;}
  .nl-card,.search-box,.search-center{max-width:100%;}

  /* ---- NAV ---- */
  .nav-wrap{height:64px;padding:0 16px;}
  .nav-toggle{display:flex;}
  .nav-actions{display:none;}
  .nav-menu{
    position:fixed;top:64px;left:0;right:0;
    background:#fff;flex-direction:column;align-items:stretch;gap:0;
    padding:8px 18px 20px;box-shadow:0 24px 44px rgba(0,0,0,.16);
    transform:translateY(-145%);transition:transform .32s ease;
    max-height:calc(100vh - 64px);overflow-y:auto;z-index:1200;
  }
  .nav-menu.open{transform:translateY(0);}
  .nav-menu a{color:var(--ink,#0e1b2c)!important;padding:15px 4px;font-size:16px;
    border-bottom:1px solid rgba(0,0,0,.07);}
  .nav-menu a::after{display:none!important;}
  .mobile-cta{display:flex;gap:10px;margin-top:14px;}
  .mobile-cta .btn-nav{flex:1;padding:14px;font-size:14px;}
  .mobile-cta .btn-nav-ghost{background:var(--sand,#f2f4f7);color:var(--ink,#0e1b2c);border:1.5px solid rgba(0,0,0,.1);}

  /* ---- kill decorative overflow ---- */
  .hero-orbs,.orb{display:none!important;}

  /* ---- HERO ---- */
  .hero{min-height:auto!important;}
  .hero-content{grid-template-columns:1fr!important;gap:28px!important;padding:100px 20px 54px!important;}
  .hero-content>*,.hero-left,.hero-right{min-width:0!important;max-width:100%!important;}
  .hero-right{display:none!important;}
  .hero-h1{font-size:clamp(36px,9vw,60px)!important;line-height:1.03!important;letter-spacing:-1px!important;}
  .hero-sub{font-size:16px!important;max-width:100%!important;margin-bottom:30px!important;}
  .hero-pill{max-width:100%;}
  .hero-actions{flex-direction:column;align-items:stretch;gap:12px;width:100%;}
  .hero-actions>*{width:100%!important;justify-content:center;text-align:center;flex:none!important;
    border-radius:16px!important;padding:15px 22px!important;}
  .hero-kpis{display:grid!important;grid-template-columns:1fr 1fr!important;gap:22px 16px!important;
    margin-top:34px!important;padding-top:26px!important;}

  /* ---- SEARCH BAR ---- */
  .search-center{margin-top:0!important;padding:34px 16px 40px!important;}
  .search-body{grid-template-columns:1fr!important;gap:0!important;min-height:0!important;}
  .sf{border-right:none!important;border-bottom:1px solid var(--border);padding:14px 20px!important;}
  .search-go{padding:16px!important;justify-content:center;}
  .search-tabs{flex-wrap:wrap;}

  /* ---- SECTIONS ---- */
  .section{padding:56px 16px!important;}
  .sec-h2{font-size:clamp(28px,7vw,42px)!important;}
  .sec-row{flex-direction:column;align-items:flex-start!important;gap:16px;}
  .stats-inner{grid-template-columns:repeat(3,1fr)!important;padding:0 16px;gap:14px!important;}
  .vai-inner{grid-template-columns:1fr!important;gap:32px!important;padding:0 16px;}

  /* ---- DESTINATIONS: uniform single column, equal gaps ---- */
  .dest-grid{grid-template-columns:1fr!important;grid-template-rows:auto!important;
    grid-auto-rows:auto!important;gap:16px!important;}
  .dest-grid>.dc{grid-column:1 / -1!important;grid-row:auto!important;min-height:240px;}
  .dc:nth-child(1) .dc-city{font-size:30px!important;}

  /* ---- PACKAGES ---- */
  .tours-grid{grid-template-columns:1fr!important;}
  .tour-filter-bar{flex-wrap:nowrap!important;overflow-x:auto;-webkit-overflow-scrolling:touch;
    justify-content:flex-start!important;padding-bottom:8px;}
  .tf-btn{flex:0 0 auto;white-space:nowrap;}

  /* ---- WHY / TESTIMONIALS ---- */
  .why-grid{grid-template-columns:1fr!important;}
  .testi-track{grid-template-columns:1fr!important;}

  /* ---- CONFIGURATOR ---- */
  .config-grid{grid-template-columns:1fr!important;gap:28px!important;}

  /* ---- CURRENCY ---- */
  .curr-grid{grid-template-columns:1fr!important;gap:12px!important;}
  .curr-card{padding:22px 18px!important;}
  .curr-swap{justify-self:center;transform:rotate(90deg);}
  .curr-swap:hover{transform:rotate(90deg);}
  .curr-result-val{font-size:24px!important;}

  /* ---- NEWSLETTER ---- */
  .nl-form{flex-direction:column!important;}
  .nl-in,.nl-btn{width:100%!important;}

  /* ---- FOOTER ---- */
  .footer-grid{grid-template-columns:1fr 1fr!important;gap:30px!important;padding:0 16px;}
}

@media (max-width:560px){
  .hero-h1{font-size:clamp(30px,9vw,44px)!important;}
  .hero-kpis{grid-template-columns:1fr 1fr!important;}
  .stats-inner{grid-template-columns:repeat(2,1fr)!important;}
  .footer-grid{grid-template-columns:1fr!important;}
  .sec-p{font-size:15px!important;}
  .btn-hero-primary,.btn-hero-secondary{width:100%;justify-content:center;}
}
/* ============================================================
   DESTINATION ENLARGE MODAL + VIEW-ALL GRID (Step 2)
   ============================================================ */
.dest-modal{position:fixed;inset:0;z-index:1000;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(8,16,28,.62);backdrop-filter:blur(4px);}
.dest-modal.open{display:flex;}
.dest-modal-card{background:#fff;border-radius:22px;width:100%;max-width:560px;max-height:90vh;overflow:auto;
  position:relative;box-shadow:0 40px 90px rgba(0,0,0,.4);animation:dmPop .22s ease;}
@keyframes dmPop{from{transform:translateY(14px) scale(.98);opacity:0}to{transform:none;opacity:1}}
.dest-modal-close{position:absolute;top:14px;right:14px;z-index:2;width:38px;height:38px;border:none;border-radius:50%;
  background:rgba(255,255,255,.9);color:#0e1b2c;font-size:22px;line-height:1;cursor:pointer;box-shadow:0 4px 14px rgba(0,0,0,.18);}
.dest-modal-close:hover{background:#fff;}
.dest-modal-img{height:240px;background-size:cover;background-position:center;background-color:#12315e;}
.dest-modal-img.nobg{background-color:#12315e;}
.dest-modal-body{padding:26px 28px 30px;}
.dm-country{font-size:13px;font-weight:700;letter-spacing:.02em;color:var(--azure,#0066FF);text-transform:uppercase;}
.dm-city{font-family:'Fraunces',Georgia,serif;font-size:30px;font-weight:900;color:var(--ink,#0e1b2c);margin:6px 0 12px;line-height:1.1;}
.dm-price{font-size:15px;color:#5b6b7f;margin-bottom:16px;}
.dm-price strong{font-size:22px;color:var(--ink,#0e1b2c);font-weight:800;}
.dm-details{color:#44586c;font-size:15px;line-height:1.7;margin-bottom:18px;}
.dm-highlights{list-style:none;padding:0;margin:0 0 24px;display:grid;gap:9px;}
.dm-highlights li{position:relative;padding-left:26px;font-size:14.5px;color:#33475b;font-weight:500;}
.dm-highlights li::before{content:'✓';position:absolute;left:0;top:0;color:#16a34a;font-weight:800;}
.dm-highlights:empty{display:none;}
.dm-cta{display:inline-flex;align-items:center;gap:8px;background:var(--azure,#0066FF);color:#fff;font-weight:800;border:none;cursor:pointer;font-family:inherit;
  font-size:15px;padding:13px 24px;border-radius:14px;text-decoration:none;transition:.2s;}
.dm-cta:hover{background:var(--azure-dk,#0052cc);transform:translateY(-2px);}
@media (max-width:560px){
  .dest-modal-img{height:190px;}
  .dm-city{font-size:25px;}
  .dest-modal-body{padding:22px 20px 26px;}
}

/* View-All page: uniform card grid (overrides the homepage mosaic spans) */
.dest-all-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(290px,1fr));gap:18px;}
.dest-all-grid .dc{grid-column:auto!important;grid-row:auto!important;min-height:340px;}
@media (max-width:640px){.dest-all-grid{grid-template-columns:1fr;}}

/* Simple page hero for the View-All page */
.page-hero{padding:130px 20px 40px;text-align:center;background:linear-gradient(180deg,#0e1b2c,#12315e);color:#fff;}
.page-hero h1{font-family:'Fraunces',Georgia,serif;font-size:clamp(34px,6vw,56px);font-weight:900;margin-bottom:12px;}
.page-hero p{color:#b7c4d6;font-size:17px;max-width:600px;margin:0 auto;}
.page-wrap{max-width:1560px;margin:0 auto;padding:46px 20px 80px;}
.back-link{display:inline-flex;align-items:center;gap:7px;color:var(--azure,#0066FF);font-weight:700;text-decoration:none;margin-bottom:26px;}

/* ============================================================
   BOOKING MODAL (Step 3)
   ============================================================ */
.book-modal{position:fixed;inset:0;z-index:1100;display:none;align-items:center;justify-content:center;
  padding:20px;background:rgba(8,16,28,.62);backdrop-filter:blur(4px);}
.book-modal.open{display:flex;}
.book-card{background:#fff;border-radius:22px;width:100%;max-width:480px;max-height:92vh;overflow:auto;
  position:relative;padding:30px 30px 34px;box-shadow:0 40px 90px rgba(0,0,0,.4);animation:dmPop .22s ease;}
.book-close{position:absolute;top:14px;right:16px;border:none;background:none;font-size:26px;line-height:1;cursor:pointer;color:#8795a6;}
.book-close:hover{color:#0e1b2c;}
.book-title{font-family:'Fraunces',Georgia,serif;font-size:26px;font-weight:900;color:#0e1b2c;margin-bottom:4px;}
.book-sub{color:#5b6b7f;font-size:14.5px;margin-bottom:18px;}
#bookPkg{color:var(--azure,#0066FF);font-weight:700;}
.bk-field{margin-bottom:13px;}
.bk-field label{display:block;font-size:13px;font-weight:700;color:#0e1b2c;margin-bottom:5px;}
.bk-field input,.bk-field textarea{width:100%;padding:12px 14px;border:1px solid #e6ebf1;border-radius:11px;font-family:inherit;font-size:14.5px;background:#fff;}
.bk-field input:focus,.bk-field textarea:focus{outline:none;border-color:var(--azure,#0066FF);}
.bk-field textarea{min-height:78px;resize:vertical;}
.bk-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.book-submit{width:100%;margin-top:20px;padding:14px;border:none;border-radius:12px;background:var(--azure,#0066FF);color:#fff;font-weight:800;font-size:15px;cursor:pointer;font-family:inherit;transition:.2s;}
.book-submit:hover{background:var(--azure-dk,#0052cc);}
.book-submit:disabled{opacity:.6;cursor:default;}
.book-err{color:#d33;font-size:13.5px;font-weight:600;margin-top:12px;text-align:center;min-height:18px;}
.book-check{width:64px;height:64px;border-radius:50%;background:#e7f7ee;color:#16a34a;font-size:32px;font-weight:800;
  display:flex;align-items:center;justify-content:center;margin:6px auto 14px;}
@media (max-width:520px){.bk-row{grid-template-columns:1fr;}.book-card{padding:26px 20px 28px;}.book-title{font-size:22px;}}

/* Quote summary box in the quote modal (Step 4) */
.quote-summary{background:#f4f7fb;border:1px solid #e6ebf1;border-radius:12px;padding:14px 16px;margin-bottom:16px;font-size:14px;color:#33475b;line-height:1.7;}
.quote-summary .qs-est{margin-top:6px;color:var(--azure,#0066FF);}

/* ============================================================
   BRANDING LOGO + LIVE VISITORS + FOOTER SOCIAL (Batch 1)
   ============================================================ */
.logo-img{height:52px;width:auto;display:block;object-fit:contain;}
.logo-img-footer{height:56px;filter:brightness(0) invert(1);}
.footer-social .fsoc svg{display:block;}

/* Live visitor counter (top-right of hero) */
.live-visitors{
  position:absolute;top:92px;right:26px;z-index:6;
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,.72);backdrop-filter:blur(10px);
  border:1px solid rgba(0,102,255,.14);border-radius:999px;
  padding:8px 15px;box-shadow:0 8px 26px rgba(8,16,28,.10);
  font-family:'Cabinet Grotesk',sans-serif;font-weight:700;font-size:13px;color:#0e1b2c;
  animation:lvIn .6s ease both;
}
@keyframes lvIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:none}}
.lv-dot{width:9px;height:9px;border-radius:50%;background:#16a34a;position:relative;flex:0 0 auto;}
.lv-dot::after{content:"";position:absolute;inset:-4px;border-radius:50%;background:rgba(22,163,74,.35);animation:lvPulse 1.8s ease-out infinite;}
@keyframes lvPulse{0%{transform:scale(.6);opacity:.8}100%{transform:scale(2.2);opacity:0}}
.lv-num{font-weight:900;color:var(--azure,#0066FF);min-width:26px;text-align:right;font-variant-numeric:tabular-nums;}
.lv-label{color:#5b6b7f;font-weight:600;}
@media (max-width:900px){
  .live-visitors{top:80px;right:14px;padding:6px 12px;font-size:12px;}
  .logo-img{height:42px;}
}
@media (max-width:560px){
  .live-visitors{top:74px;right:10px;padding:5px 10px;font-size:11px;}
  .lv-label{display:none;}
}

/* ============================================================
   INNER PAGES (About, Careers, Blog, Privacy, Terms)
   ============================================================ */
.nav-solid{background:rgba(10,19,35,.68)!important;-webkit-backdrop-filter:blur(20px) saturate(155%);backdrop-filter:blur(20px) saturate(155%);border-bottom:1px solid rgba(255,255,255,.09);box-shadow:0 8px 30px rgba(3,8,18,.30);}
.nav-solid .nav-menu a{color:rgba(255,255,255,.82);}
.nav-solid .nav-menu a:hover{color:#fff;}

.page-hero{
  position:relative;padding:140px 24px 64px;text-align:center;overflow:hidden;
  background:radial-gradient(1200px 500px at 50% -10%,rgba(0,102,255,.18),transparent 60%),linear-gradient(180deg,#0b1422,#0e1b2c);
  color:#fff;
}
.page-hero::after{content:"";position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='.03' stroke-width='1'/%3E%3C/svg%3E");opacity:.6;}
.page-hero>*{position:relative;z-index:1;}
.page-hero .ph-pill{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);padding:7px 16px;border-radius:999px;font-size:13px;font-weight:700;margin-bottom:18px;color:#cfe0ff;}
.page-hero h1{font-family:'Fraunces',serif;font-size:clamp(34px,6vw,58px);font-weight:900;line-height:1.05;margin-bottom:16px;}
.page-hero h1 .accent{color:#4d9bff;font-style:italic;}
.page-hero p{max-width:640px;margin:0 auto;font-size:17px;line-height:1.7;color:rgba(255,255,255,.75);}

.page-wrap{max-width:1180px;margin:0 auto;padding:0 24px;}
.page-section{padding:64px 0;}
.page-section.tight{padding:40px 0;}
.section-eyebrow{font-size:13px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--azure);margin-bottom:10px;}
.section-title{font-family:'Fraunces',serif;font-size:clamp(26px,4vw,40px);font-weight:900;color:var(--ink);line-height:1.1;margin-bottom:18px;}
.page-prose{font-size:16.5px;line-height:1.85;color:#33475b;}
.page-prose p{margin-bottom:16px;}
.page-lead{font-size:19px;line-height:1.8;color:#2a3b4d;}

.about-split{display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:center;}
.about-statgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:8px;}
.about-stat{background:var(--sand);border:1px solid var(--border);border-radius:16px;padding:22px;text-align:center;}
.about-stat .n{font-family:'Fraunces',serif;font-size:30px;font-weight:900;color:var(--azure);}
.about-stat .l{font-size:13px;color:#5b6b7f;font-weight:600;margin-top:4px;}
.about-card{background:var(--sand);border:1px solid var(--border);border-radius:20px;padding:28px;}

.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px;}
.founder-card{background:#fff;border:1px solid var(--border);border-radius:20px;overflow:hidden;box-shadow:0 10px 30px rgba(8,16,28,.05);transition:.25s;}
.founder-card:hover{transform:translateY(-4px);box-shadow:0 20px 44px rgba(8,16,28,.10);}
.founder-photo{width:100%;aspect-ratio:1/1;object-fit:cover;background:linear-gradient(135deg,#0066FF,#00C896);display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Fraunces',serif;font-size:44px;font-weight:900;}
.founder-body{padding:20px 22px 24px;}
.founder-name{font-family:'Fraunces',serif;font-size:21px;font-weight:800;color:var(--ink);}
.founder-role{font-size:13.5px;font-weight:700;color:var(--azure);margin:2px 0 10px;}
.founder-bio{font-size:14px;line-height:1.7;color:#5b6b7f;margin-bottom:16px;}
.founder-link{display:inline-flex;align-items:center;gap:6px;font-size:13.5px;font-weight:800;color:var(--ink);border:1.5px solid var(--border);border-radius:10px;padding:9px 16px;text-decoration:none;transition:.2s;}
.founder-link:hover{background:var(--azure);color:#fff;border-color:var(--azure);}

.cta-band{background:linear-gradient(135deg,var(--azure),#0043a8);border-radius:24px;padding:48px;text-align:center;color:#fff;margin:20px 0;}
.cta-band h2{font-family:'Fraunces',serif;font-size:clamp(24px,3.5vw,34px);font-weight:900;margin-bottom:12px;}
.cta-band p{opacity:.9;margin-bottom:24px;font-size:16px;}
.cta-band .btn-white{display:inline-block;background:#fff;color:var(--azure);font-weight:800;padding:14px 30px;border-radius:14px;text-decoration:none;transition:.2s;}
.cta-band .btn-white:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(0,0,0,.2);}

.profile-btn{display:inline-flex;align-items:center;gap:10px;background:var(--ink);color:#fff;font-weight:800;padding:15px 26px;border-radius:14px;text-decoration:none;transition:.2s;}
.profile-btn:hover{background:var(--azure);transform:translateY(-2px);}

/* Careers */
.job-card{background:#fff;border:1px solid var(--border);border-radius:16px;padding:24px 26px;margin-bottom:14px;display:flex;justify-content:space-between;gap:20px;align-items:center;flex-wrap:wrap;}
.job-card h3{font-family:'Fraunces',serif;font-size:20px;font-weight:800;color:var(--ink);}
.job-meta{font-size:13.5px;color:#5b6b7f;margin-top:4px;}

/* Blog */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px;}
.blog-card{background:#fff;border:1px solid var(--border);border-radius:18px;overflow:hidden;box-shadow:0 10px 26px rgba(8,16,28,.05);}
.blog-empty{text-align:center;padding:70px 20px;background:var(--sand);border-radius:20px;border:1px dashed var(--border);}

/* Legal */
.legal-content{max-width:820px;margin:0 auto;font-size:16px;line-height:1.85;color:#33475b;}
.legal-content h2{font-family:'Fraunces',serif;font-size:24px;font-weight:800;color:var(--ink);margin:30px 0 12px;}
.legal-content h3{font-size:18px;font-weight:800;color:var(--ink);margin:22px 0 8px;}
.legal-content p{margin-bottom:14px;}
.legal-content ul{margin:0 0 16px 22px;}
.legal-content li{margin-bottom:8px;}
.legal-updated{color:#8795a6;font-size:14px;margin-bottom:8px;}

/* Concern companies footer strip */
.footer-concern{border-bottom:1px solid rgba(255,255,255,.08);padding:26px 0;margin-bottom:20px;}
.footer-concern-inner{max-width:1360px;margin:0 auto;padding:0 40px;display:flex;align-items:center;gap:28px;flex-wrap:wrap;}
.fc-label{font-size:12px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.4);}
.fc-logos{display:flex;align-items:center;gap:26px;flex-wrap:wrap;}
.fc-item{display:inline-flex;align-items:center;opacity:.75;transition:.2s;}
.fc-item:hover{opacity:1;}
.fc-item img{height:34px;width:auto;object-fit:contain;filter:brightness(0) invert(1);opacity:.85;}
.fc-name{color:#fff;font-weight:700;font-size:15px;text-decoration:none;}

@media (max-width:820px){
  .about-split{grid-template-columns:1fr;gap:28px;}
  .about-statgrid{grid-template-columns:repeat(2,1fr);}
  .page-hero{padding:118px 20px 48px;}
  .page-section{padding:44px 0;}
  .cta-band{padding:34px 22px;}
  .footer-concern-inner{padding:0 20px;}
}

/* Company profile viewer */
.profile-viewer{border:1px solid var(--border);border-radius:16px;overflow:hidden;background:#f4f7fb;box-shadow:0 10px 30px rgba(8,16,28,.06);}
.profile-viewer object,.profile-viewer iframe{display:block;width:100%;}
@media (max-width:820px){.profile-viewer object,.profile-viewer iframe{height:560px!important;}}

/* Company profile — inline PDF.js rendering */
.pdf-pages{max-width:920px;margin:0 auto;}
.pdf-page{background:#fff;border:1px solid var(--border);border-radius:12px;overflow:hidden;box-shadow:0 12px 34px rgba(8,16,28,.10);margin-bottom:22px;}
.pdf-page canvas{display:block;width:100%;height:auto;}
.pdf-loading{display:flex;flex-direction:column;align-items:center;gap:14px;padding:60px 0;color:#5b6b7f;font-weight:600;}
.pdf-spinner{width:42px;height:42px;border-radius:50%;border:4px solid #e6ebf1;border-top-color:var(--azure,#0066FF);animation:pdfSpin .8s linear infinite;}
@keyframes pdfSpin{to{transform:rotate(360deg)}}

/* ============================================================
   DYNAMIC SEARCH BAR (Flights / Tours / Visa / Hotels / Umrah)
   ============================================================ */
.search-box{position:relative;}
.stab{white-space:nowrap;}

/* Panels */
.spanel{display:none;animation:spanelIn .28s ease;}
.spanel.on{display:block;}
@keyframes spanelIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}

/* Top row (segmented + nonstop) */
.sp-top{display:flex;align-items:center;gap:18px;padding:16px 22px 2px;flex-wrap:wrap;}
.sp-top-wrap{align-items:flex-end;gap:26px;padding-bottom:8px;}
.seg-field{display:flex;flex-direction:column;gap:7px;}
.seg-cap{font-size:10px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-50);}
.seg{display:inline-flex;background:var(--sand);border:1px solid var(--border);border-radius:12px;padding:3px;gap:2px;}
.seg-opt{border:none;background:transparent;padding:8px 16px;border-radius:9px;font-size:13px;font-weight:700;
  color:var(--ink-50);cursor:none;font-family:'Cabinet Grotesk',sans-serif;transition:all .18s;white-space:nowrap;}
.seg-opt.on{background:#fff;color:var(--azure);box-shadow:0 2px 8px rgba(0,102,255,.14);}
.seg-opt:hover:not(.on){color:var(--azure);}
.seg-sm .seg-opt{padding:7px 13px;font-size:12.5px;}
.chk{display:inline-flex;align-items:center;gap:8px;font-size:13.5px;font-weight:600;color:var(--ink-80);cursor:none;user-select:none;}
.chk input{position:absolute;opacity:0;width:0;height:0;}
.chk span{width:18px;height:18px;border:2px solid var(--border);border-radius:5px;display:inline-block;position:relative;transition:all .18s;}
.chk input:checked+span{background:var(--azure);border-color:var(--azure);}
.chk input:checked+span::after{content:"";position:absolute;left:5px;top:1.5px;width:4px;height:9px;border:solid #fff;border-width:0 2.5px 2.5px 0;transform:rotate(45deg);}

/* Field row */
.sp-fields{display:flex;align-items:stretch;min-height:78px;}
.sp-fields .sf{flex:1 1 0;min-width:0;padding:0 18px;display:flex;flex-direction:column;justify-content:center;
  border-right:1px solid #eef1f6;transition:background .18s;position:relative;cursor:text;}
.sp-fields .sf:hover{background:#FAFCFF;}
.sf-wide{flex:2 1 0!important;}
.sf-pax,.sf-select{cursor:pointer;}
.sf input,.sf select,.pax-trigger{border:none;background:transparent;font-size:15px;font-weight:600;color:var(--ink);
  font-family:'Cabinet Grotesk',sans-serif;outline:none;width:100%;padding:0;cursor:none;}
.sf input::placeholder{color:#B8C2D0;font-weight:400;}
.sf select{appearance:none;cursor:none;padding-right:16px;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238795a6' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right center;}
.sf input[type=date]{color:var(--ink);}
.pax-trigger{display:flex;align-items:center;justify-content:space-between;gap:8px;}
.pax-trigger svg{width:15px;height:15px;color:#8795a6;flex:0 0 auto;}

/* Swap button (flights) */
.sf-swap{flex:0 0 auto;align-self:center;width:38px;height:38px;border-radius:50%;border:1px solid var(--border);
  background:#fff;color:var(--azure);cursor:none;display:flex;align-items:center;justify-content:center;
  margin:0 -19px;z-index:3;box-shadow:0 3px 10px rgba(8,16,28,.10);transition:all .2s;position:relative;}
.sf-swap:hover{background:var(--azure);color:#fff;transform:rotate(180deg);}
.sf-swap svg{width:17px;height:17px;}

/* Search button (shared) */
.sp-fields .search-go{flex:0 0 auto;padding:0 30px;background:var(--azure);color:#fff;border:none;
  font-size:15px;font-weight:800;font-family:'Cabinet Grotesk',sans-serif;display:flex;align-items:center;gap:10px;
  transition:all .22s;white-space:nowrap;cursor:none;}
.sp-fields .search-go:hover{background:var(--azure-dk);}
.sp-fields .search-go svg{width:19px;height:19px;transition:transform .22s;}
.sp-fields .search-go:hover svg{transform:scale(1.12);}

/* Suggestions row (tours / hotels) */
.sp-suggest{display:flex;gap:10px;padding:14px 20px 4px;flex-wrap:wrap;}
.sug-card{display:flex;flex-direction:column;gap:2px;border:1px solid var(--border);border-radius:12px;
  padding:10px 14px;cursor:none;transition:all .2s;background:#fff;min-width:150px;}
.sug-card:hover{border-color:var(--azure);background:#F5F9FF;transform:translateY(-2px);}
.sug-t{font-size:13.5px;font-weight:800;color:var(--ink);}
.sug-s{font-size:11.5px;color:var(--ink-50);}
.sug-p{font-size:12px;font-weight:800;color:var(--azure);}

/* Popular quick-pick tags */
.tag-row{display:flex;gap:8px;flex-wrap:wrap;}

/* Autocomplete dropdown */
.ac-drop{position:absolute;z-index:40;background:#fff;border:1px solid var(--border);border-radius:14px;
  box-shadow:0 18px 44px rgba(8,16,28,.16);padding:6px;display:none;max-height:290px;overflow-y:auto;min-width:230px;}
.ac-drop.on{display:block;}
.ac-item{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:9px;cursor:none;font-size:14px;
  font-weight:600;color:var(--ink);transition:background .12s;}
.ac-item:hover,.ac-item.hl{background:#F0F6FF;color:var(--azure);}
.ac-item .ac-ico{font-size:15px;width:18px;text-align:center;flex:0 0 auto;}
.ac-item .ac-sub{font-size:11.5px;color:var(--ink-50);font-weight:500;margin-left:auto;}
.ac-empty{padding:12px;font-size:13px;color:var(--ink-50);text-align:center;}

/* Passenger popover */
.pax-pop{position:absolute;z-index:41;background:#fff;border:1px solid var(--border);border-radius:16px;
  box-shadow:0 18px 44px rgba(8,16,28,.18);padding:16px;width:290px;display:none;}
.pax-pop.on{display:block;}
.pax-row{display:flex;align-items:center;justify-content:space-between;padding:10px 0;}
.pax-t{font-size:14px;font-weight:800;color:var(--ink);}
.pax-s{font-size:11.5px;color:var(--ink-50);}
.stepper{display:flex;align-items:center;gap:14px;}
.stepper button{width:32px;height:32px;border-radius:50%;border:1.5px solid var(--border);background:#fff;color:var(--azure);
  font-size:19px;font-weight:700;cursor:none;display:flex;align-items:center;justify-content:center;line-height:1;transition:all .15s;}
.stepper button:hover{border-color:var(--azure);background:#F0F6FF;}
.stepper span{min-width:18px;text-align:center;font-weight:800;font-size:15px;color:var(--ink);}
.pax-classes{display:grid;grid-template-columns:1fr 1fr;gap:6px;margin:12px 0;padding-top:12px;border-top:1px solid var(--border);}
.pcls{border:1.5px solid var(--border);background:#fff;border-radius:10px;padding:9px;font-size:12.5px;font-weight:700;
  color:var(--ink-80);cursor:none;font-family:'Cabinet Grotesk',sans-serif;transition:all .15s;}
.pcls.on{border-color:var(--azure);background:var(--azure);color:#fff;}
.pax-apply{width:100%;padding:12px;background:var(--azure);color:#fff;border:none;border-radius:11px;font-weight:800;
  font-size:14px;font-family:'Cabinet Grotesk',sans-serif;cursor:none;transition:background .2s;}
.pax-apply:hover{background:var(--azure-dk);}

/* ---- Responsive: stack on mobile ---- */
@media (max-width:860px){
  .sp-fields{flex-direction:column;min-height:0;}
  .sp-fields .sf{border-right:none;border-bottom:1px solid var(--border);padding:14px 20px;}
  .sf-wide{flex:1 1 auto!important;}
  .sf-swap{position:relative;right:auto;top:auto;margin:-6px auto;transform:none;width:36px;height:36px;}
  .sf-swap:hover{transform:rotate(180deg);}
  .sp-fields .search-go{width:100%;justify-content:center;padding:16px;}
  .sp-top{padding:14px 16px 2px;gap:12px;}
  .seg{width:100%;}.seg-opt{flex:1;text-align:center;}
  .seg-sm{width:auto;}
  .ac-drop{min-width:0;left:12px!important;right:12px!important;width:auto!important;}
  .pax-pop{left:12px!important;right:12px!important;width:auto!important;}
  .sug-card{flex:1 1 100%;}
}

/* search suggestion + enquiry summary extras */
.sug-lead{font-size:12px;font-weight:800;color:var(--ink-50);align-self:center;margin-right:2px;letter-spacing:.02em;}
.sug-card.sel{border-color:var(--azure);background:var(--azure);}
.sug-card.sel .sug-t{color:#fff;}
.qs-head{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--azure);margin-bottom:8px;}
.quote-summary div{font-size:14.5px;color:var(--ink);line-height:1.7;font-weight:600;}
.qs-note{font-size:12.5px!important;color:var(--ink-50)!important;font-weight:500!important;margin-top:10px;}
.tag.sel{background:var(--azure);color:#fff;border-color:var(--azure);}

/* Search bar — cleaner polish pass */
.search-tabs{padding:6px 8px 0;gap:4px;}
.stab{padding:12px 20px;font-size:13.5px;border-radius:11px 11px 0 0;}
.stab-ico{display:inline-flex;align-items:center;}
.stab-ico svg{width:17px;height:17px;display:block;}
.stab.on{box-shadow:none;position:relative;}
.stab.on::after{content:"";position:absolute;left:14px;right:14px;bottom:0;height:2.5px;background:var(--azure);border-radius:2px;}
.sp-top + .sp-fields{border-top:1px solid #eef1f6;}
.spanel[data-panel="tours"] .sp-fields,
.spanel[data-panel="visa"] .sp-fields,
.spanel[data-panel="hotels"] .sp-fields{border-top:none;}
.search-tags{padding:14px 22px;}
.sp-fields .search-go{border-bottom-right-radius:0;}
.sf-swap{box-shadow:0 2px 8px rgba(8,16,28,.12);}
.ac-drop{box-shadow:0 16px 40px rgba(8,16,28,.14);}
/* keep the field row edges tidy: last field before button keeps divider, button flush */
.sp-fields .sf:last-of-type{border-right:1px solid #eef1f6;}

/* ============================================================
   COMPACT HERO — fit hero + search bar + stats band in one screen
   (whitespace-only compression; all elements kept)
   ============================================================ */
@media (min-width:861px){
  .hero{min-height:auto;}
  .hero-content{padding:94px 48px 20px;}
  .hero-pill{margin-bottom:15px;}
  .hero-h1{font-size:clamp(44px,4.7vw,68px);margin-bottom:13px;letter-spacing:-1.5px;}
  .hero-sub{font-size:16.5px;line-height:1.55;margin-bottom:22px;max-width:480px;}
  .hero-kpis{margin-top:28px;padding-top:22px;gap:30px;}
  .kpi-val{font-size:30px;}
  .kpi-val sup{font-size:18px;}
  .globe-wrap{width:430px;height:430px;}
  .search-center{margin-top:0;}
}

/* ============================================================
   FROSTED-GLASS SEARCH CARD (floats on the navy hero)
   ============================================================ */
.search-box{
  background:rgba(255,255,255,.60);
  -webkit-backdrop-filter:blur(28px) saturate(165%);
  backdrop-filter:blur(28px) saturate(165%);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 26px 70px rgba(2,8,20,.42);
}
.search-tabs{background:rgba(255,255,255,.10);border-bottom:1px solid rgba(255,255,255,.28);}
.stab{color:#33465c;}
.stab.on{background:rgba(255,255,255,.92);color:var(--azure);}
.stab:hover:not(.on){background:rgba(255,255,255,.4);color:var(--azure);}
.search-tags{background:rgba(255,255,255,.10);border-top:1px solid rgba(255,255,255,.28);}
.seg{background:rgba(255,255,255,.5);border-color:rgba(255,255,255,.6);}
.chk span{border-color:rgba(90,110,135,.5);}
.sp-fields .sf{border-color:rgba(255,255,255,.30)!important;}
.sp-fields .sf:last-of-type{border-color:rgba(255,255,255,.30)!important;}
.sp-fields .sf:hover{background:rgba(255,255,255,.22);}
.sf-lbl{color:#54677d;}
.sf input::placeholder{color:#8492a6;}
.sf-swap{background:rgba(255,255,255,.85);}
/* keep floating dropdowns crisp/readable (lightly frosted) */
.ac-drop,.pax-pop{background:rgba(255,255,255,.94);-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);}
/* tag pills slightly translucent to sit on the glass */
.search-tags .tag{background:rgba(255,255,255,.55);}
.search-tags .tag:hover{background:#fff;}

/* ============================================================
   INTERACTIVE 3D HERO GLOBE (globe.gl)
   ============================================================ */
.hero-right{display:flex;align-items:center;justify-content:center;position:relative;}
.globe-stage{position:relative;width:100%;max-width:540px;aspect-ratio:1/1;margin:0 auto;}
.globe-stage::before{content:"";position:absolute;inset:-6%;border-radius:50%;
  background:radial-gradient(circle at 50% 46%,rgba(77,163,255,.20),rgba(77,163,255,.05) 55%,transparent 70%);
  filter:blur(14px);z-index:0;pointer-events:none;}
.hero-globe{position:absolute;inset:0;z-index:1;cursor:grab;}
.hero-globe:active{cursor:grabbing;}
.hero-globe canvas{display:block;outline:none;}

/* Location markers — red pin + always-visible price */
.gpin{position:relative;width:0;height:0;pointer-events:auto;transition:opacity .45s ease;}
.gpin.gpin-hidden{opacity:0;}                       /* rotated behind the globe */
.gpin-pin{position:absolute;left:-9px;top:-25px;width:18px;height:25px;display:block;}
.gpin-pin svg{width:100%;height:100%;display:block;
  filter:drop-shadow(0 0 6px rgba(255,59,72,.85)) drop-shadow(0 2px 4px rgba(0,0,0,.45));}
.gpin-pin svg path{fill:#FF3B48;}
.gpin-pin svg circle{fill:#fff;}
.gpin-pulse{position:absolute;left:50%;bottom:-3px;width:12px;height:12px;margin-left:-6px;border-radius:50%;
  background:rgba(255,59,72,.55);transform-origin:center;animation:gpinPulse 2.4s ease-out infinite;pointer-events:none;}
@keyframes gpinPulse{0%{transform:scale(.35);opacity:.85}100%{transform:scale(2.4);opacity:0}}
/* price label — visible without hover while the pin is on the front face */
.gpin-chip{position:absolute;left:13px;top:-21px;
  display:flex;align-items:center;gap:5px;white-space:nowrap;
  background:rgba(9,18,33,.86);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.16);border-radius:8px;padding:3px 8px;color:#fff;
  font-family:'Cabinet Grotesk',sans-serif;font-size:10.5px;font-weight:800;line-height:1.25;
  box-shadow:0 6px 16px rgba(0,0,0,.34);
  opacity:0;transform:scale(.9);transform-origin:left center;
  transition:opacity .3s ease,transform .3s ease;pointer-events:none;}
/* near the rim -> reveal (no hover needed) */
.gpin.gpin-edge .gpin-chip{opacity:1;transform:none;}
/* pin on the right half -> put the label on its inner (left) side */
.gpin.gpin-flip .gpin-chip{left:auto;right:13px;transform-origin:right center;}
.gpin-price{color:#FF6B74;font-weight:800;}
.gpin:hover{z-index:6;}
.gpin:hover .gpin-chip{opacity:1;transform:none;box-shadow:0 10px 22px rgba(0,0,0,.45);}
.gpin:hover .gpin-pin svg path{fill:#FF5A64;}

/* Fallback if WebGL/library unavailable */
.hero-globe.globe-off{background:radial-gradient(circle at 50% 45%,#123 0%,transparent 70%);}

@media (max-width:860px){
  .globe-stage{max-width:330px;}
  .hero-globe{pointer-events:none;cursor:default;}
  /* small screen: keep the price, drop the country name so pins don't collide */
  .gpin-chip{font-size:9.5px;padding:2px 5px;gap:0;}
  .gpin-chip b{display:none;}
  .gpin-pin{left:-7px;top:-20px;width:14px;height:20px;}
}

/* ============================================================
   COUNTRY PAGES (themed) + COVERFLOW PACKAGE CAROUSEL
   ============================================================ */
.country-page{--r:20px;}
/* themed hero */
.cp-hero{position:relative;overflow:hidden;color:#fff;text-align:center;padding:150px 24px 84px;}
.cp-hero-orn{position:absolute;inset:0;pointer-events:none;opacity:.5;
  background:
    radial-gradient(circle at 15% 20%,rgba(255,255,255,.14),transparent 40%),
    radial-gradient(circle at 85% 75%,rgba(255,255,255,.10),transparent 42%),
    repeating-linear-gradient(45deg,rgba(255,255,255,.045) 0 2px,transparent 2px 22px);}
.cp-hero-inner{position:relative;max-width:820px;margin:0 auto;}
.cp-flag{font-size:52px;line-height:1;margin-bottom:14px;filter:drop-shadow(0 6px 18px rgba(0,0,0,.35));}
.cp-greet-native{font-family:'Fraunces',serif;font-size:clamp(40px,7vw,74px);font-weight:800;line-height:1.02;
  letter-spacing:-.5px;text-shadow:0 8px 30px rgba(0,0,0,.35);color:var(--cp-accent);}
.cp-greet-en{font-family:'Cabinet Grotesk',sans-serif;font-size:clamp(18px,2.4vw,26px);font-weight:800;
  letter-spacing:.14em;text-transform:uppercase;margin:10px 0 0;opacity:.96;}
.cp-tagline-native{font-size:16px;font-weight:700;opacity:.85;margin-top:18px;}
.cp-tagline-en{font-size:16.5px;line-height:1.6;opacity:.9;max-width:600px;margin:8px auto 0;font-weight:400;}
.cp-hero-meta{display:inline-flex;gap:12px;align-items:center;margin-top:22px;padding:9px 20px;border-radius:100px;
  background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.22);font-size:13px;font-weight:700;
  -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);}

/* section head */
.cp-packages{max-width:1320px;margin:0 auto;padding:64px 20px 20px;}
.cp-sec-head{text-align:center;margin-bottom:36px;}
.cp-eyebrow{font-size:12px;font-weight:800;letter-spacing:.18em;color:var(--cp);margin-bottom:10px;}
.cp-sec-head h2{font-family:'Fraunces',serif;font-size:clamp(30px,4vw,46px);font-weight:700;color:var(--ink);margin:0;}
.cp-sec-head h2 span{color:var(--cp);font-style:italic;}
.cp-sec-head p{color:var(--ink-50);font-size:15.5px;margin:12px auto 0;max-width:560px;}

/* coverflow */
.coverflow{position:relative;display:flex;align-items:center;justify-content:center;gap:6px;}
.cf-viewport{position:relative;flex:1;overflow:hidden;}
.cf-track{position:relative;height:486px;margin:0 auto;}
.cf-card{position:absolute;left:50%;top:8px;width:340px;background:#fff;border-radius:var(--r);
  box-shadow:0 30px 70px rgba(8,16,28,.22);overflow:hidden;cursor:pointer;
  transition:transform .5s cubic-bezier(.22,1,.36,1),opacity .45s,box-shadow .3s;will-change:transform;
  border:1px solid var(--line);}
.cf-card.cf-on{box-shadow:0 40px 90px rgba(8,16,28,.34);border-color:transparent;}
.cf-top{height:172px;position:relative;background:linear-gradient(135deg,var(--cp),var(--cp-deep));
  background-size:cover;background-position:center;display:flex;align-items:flex-end;padding:14px;}
.cf-top.has-img::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.45));}
.cf-top-label{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#fff;
  font-family:'Fraunces',serif;font-size:24px;font-weight:700;text-align:center;padding:0 16px;opacity:.92;
  text-shadow:0 4px 16px rgba(0,0,0,.4);}
.cf-cat{position:relative;z-index:2;background:rgba(255,255,255,.92);color:var(--cp-deep);font-size:11px;font-weight:800;
  padding:5px 11px;border-radius:100px;}
.cf-badge{position:absolute;top:12px;right:12px;z-index:2;background:var(--cp-accent);color:#3a2a00;font-size:11px;
  font-weight:800;padding:5px 10px;border-radius:100px;box-shadow:0 6px 16px rgba(0,0,0,.2);}
.cf-body{padding:16px 18px 18px;}
.cf-title{font-family:'Fraunces',serif;font-size:20px;font-weight:700;color:var(--ink);margin:0 0 6px;line-height:1.2;}
.cf-loc{font-size:12.5px;color:var(--ink-50);font-weight:600;margin-bottom:12px;}
.cf-highs{list-style:none;padding:0;margin:0 0 14px;display:flex;flex-direction:column;gap:6px;}
.cf-highs li{font-size:13px;color:#41505f;padding-left:20px;position:relative;line-height:1.35;}
.cf-highs li::before{content:"✓";position:absolute;left:0;color:var(--cp);font-weight:800;}
.cf-foot{display:flex;align-items:center;justify-content:space-between;gap:10px;border-top:1px solid var(--line);padding-top:13px;}
.cf-price{font-size:12px;color:var(--ink-50);}
.cf-price b{font-family:'Fraunces',serif;font-size:20px;color:var(--ink);font-weight:700;margin-left:2px;}
.cf-price s{color:#b9c2cd;font-size:12px;margin-left:4px;}
.cf-btn{background:var(--cp);color:#fff;border:none;border-radius:11px;padding:10px 16px;font-weight:800;font-size:13.5px;
  font-family:'Cabinet Grotesk',sans-serif;cursor:pointer;transition:filter .2s,transform .2s;white-space:nowrap;}
.cf-btn:hover{filter:brightness(1.08);transform:translateY(-1px);}
.cf-nav{flex:0 0 auto;width:48px;height:48px;border-radius:50%;border:1px solid var(--line);background:#fff;color:var(--cp);
  font-size:26px;line-height:1;cursor:pointer;z-index:200;box-shadow:0 8px 24px rgba(8,16,28,.14);transition:all .2s;}
.cf-nav:hover{background:var(--cp);color:#fff;border-color:transparent;}
.cf-dots{display:flex;justify-content:center;gap:8px;margin-top:26px;}
.cf-dot{width:8px;height:8px;border-radius:100px;border:none;background:#d5dde6;cursor:pointer;transition:all .3s;padding:0;}
.cf-dot.on{width:26px;background:var(--cp);}

/* custom-package strip */
.cp-addons{max-width:1000px;margin:40px auto 80px;padding:0 20px;}
.cp-addons-inner{background:var(--cp-soft);border:1px solid color-mix(in srgb,var(--cp) 18%,transparent);
  border-radius:24px;padding:44px 32px;text-align:center;}
.cp-addons-ic{font-size:34px;margin-bottom:10px;}
.cp-addons-inner h3{font-family:'Fraunces',serif;font-size:26px;font-weight:700;color:var(--cp-deep);margin:0 0 8px;}
.cp-addons-inner p{color:#4a5a6a;font-size:15px;line-height:1.6;max-width:560px;margin:0 auto 20px;}
.cp-btn-lg{display:inline-block;background:var(--cp);color:#fff;text-decoration:none;padding:14px 28px;border-radius:13px;
  font-weight:800;font-size:15px;transition:filter .2s,transform .2s;}
.cp-btn-lg:hover{filter:brightness(1.08);transform:translateY(-2px);}
.cp-empty{text-align:center;padding:40px 20px 60px;}
.cp-empty p{color:var(--ink-50);font-size:16px;margin-bottom:20px;}

@media (max-width:860px){
  .cp-hero{padding:120px 18px 60px;}
  .cf-card{width:280px;}
  .cf-track{height:470px;}
  .cf-nav{width:40px;height:40px;font-size:22px;}
}
@media (max-width:520px){
  .cf-card{width:250px;}
}

/* ============================================================
   CHINA COUNTRY THEME — festival decorations
   ============================================================ */
.country-china .cp-hero{overflow:hidden;}
/* giant calligraphy watermark */
.cn-watermark{position:absolute;right:-2%;top:6%;font-family:'Fraunces',serif;font-size:clamp(180px,30vw,380px);
  line-height:.9;font-weight:800;color:rgba(255,255,255,.05);pointer-events:none;user-select:none;letter-spacing:-.05em;}
/* auspicious clouds drifting */
.cn-clouds{position:absolute;inset:0;pointer-events:none;}
.cn-cloud{position:absolute;width:150px;opacity:.34;}
.cn-cloud.c1{left:4%;top:22%;animation:cnDrift 9s ease-in-out infinite;}
.cn-cloud.c2{right:8%;bottom:26%;width:110px;opacity:.26;animation:cnDrift 11s ease-in-out infinite reverse;}
@keyframes cnDrift{0%,100%{transform:translateX(0)}50%{transform:translateX(26px)}}
/* hanging lanterns */
.cn-lanterns{position:absolute;top:0;left:0;right:0;height:0;pointer-events:none;}
.cn-lant{position:absolute;top:0;display:flex;flex-direction:column;align-items:center;
  transform-origin:top center;animation:cnSwing 5.2s ease-in-out infinite;}
.cn-lant.l1{left:7%;}
.cn-lant.l2{left:15%;animation-delay:1.1s;animation-duration:6s;transform:scale(.78);transform-origin:top center;}
.cn-lant.l3{right:9%;animation-delay:.6s;animation-duration:5.6s;transform:scale(.9);}
@keyframes cnSwing{0%,100%{rotate:-3.5deg}50%{rotate:3.5deg}}
.cn-lant i{display:block;font-style:normal;}
.cn-lant .cord{width:2px;height:64px;background:linear-gradient(rgba(255,255,255,.0),rgba(245,197,66,.65));}
.cn-lant .cap{width:26px;height:7px;background:#F5C542;border-radius:3px;}
.cn-lant .cap.b{width:20px;}
.cn-lant .body{width:64px;height:52px;margin:-1px 0;border-radius:50%/46%;
  background:radial-gradient(circle at 35% 32%,#FF5A5A,#D31226 62%,#9A0A20);
  border:2px solid #F5C542;color:#FFE9A8;display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:800;font-family:'Fraunces',serif;
  box-shadow:0 0 26px 6px rgba(255,90,90,.45),inset 0 -8px 14px rgba(0,0,0,.25);
  background-image:repeating-linear-gradient(90deg,rgba(255,255,255,.10) 0 2px,transparent 2px 12px),
    radial-gradient(circle at 35% 32%,#FF5A5A,#D31226 62%,#9A0A20);}
.cn-lant .tassel{width:3px;height:30px;background:linear-gradient(#F5C542,#C8102E);border-radius:2px;position:relative;}
.cn-lant .tassel::after{content:"";position:absolute;left:50%;top:100%;transform:translateX(-50%);
  width:9px;height:9px;border-radius:50%;background:#F5C542;}
/* floating gold sparks */
.cn-sparks{position:absolute;inset:0;pointer-events:none;}
.cn-sparks i{position:absolute;width:5px;height:5px;border-radius:50%;background:#F5C542;opacity:0;
  box-shadow:0 0 10px 2px rgba(245,197,66,.8);animation:cnSpark 6s linear infinite;}
.cn-sparks i:nth-child(1){left:18%;bottom:18%;animation-delay:0s;}
.cn-sparks i:nth-child(2){left:32%;bottom:10%;animation-delay:1.2s;}
.cn-sparks i:nth-child(3){left:55%;bottom:14%;animation-delay:2.4s;}
.cn-sparks i:nth-child(4){left:70%;bottom:8%;animation-delay:3.1s;}
.cn-sparks i:nth-child(5){left:84%;bottom:20%;animation-delay:4.2s;}
.cn-sparks i:nth-child(6){left:44%;bottom:6%;animation-delay:5s;}
@keyframes cnSpark{0%{transform:translateY(0);opacity:0}12%{opacity:.9}60%{opacity:.5}100%{transform:translateY(-130px);opacity:0}}
/* pagoda + great wall skyline */
.cn-skyline{position:absolute;left:0;right:0;bottom:-1px;width:100%;height:92px;pointer-events:none;}
/* red seal stamp */
.cn-seal{position:absolute;right:8%;top:34%;width:74px;height:74px;background:#A50D22;border:3px solid #F5C542;
  border-radius:10px;transform:rotate(6deg);display:flex;flex-direction:column;align-items:center;justify-content:center;
  color:#FFE9A8;font-family:'Fraunces',serif;font-size:34px;font-weight:800;
  box-shadow:0 14px 34px rgba(0,0,0,.35),inset 0 0 0 2px rgba(255,233,168,.25);}
.cn-seal span{font-family:'Cabinet Grotesk',sans-serif;font-size:8px;letter-spacing:.28em;font-weight:800;margin-top:2px;}
/* knot divider above packages */
.cn-divider{display:flex;align-items:center;justify-content:center;gap:16px;margin:-6px 0 26px;}
.cn-div-line{height:2px;width:min(180px,22vw);background:linear-gradient(90deg,transparent,#E3B84C);border-radius:2px;}
.cn-divider .cn-div-line:last-child{background:linear-gradient(90deg,#E3B84C,transparent);}
.cn-knot{width:34px;height:34px;}
/* lattice pattern behind packages */
.country-china .cp-packages{position:relative;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='52'%3E%3Cg fill='none' stroke='%23C8102E' stroke-opacity='.055' stroke-width='2'%3E%3Cpath d='M6 6h40v40H6z'/%3E%3Cpath d='M16 16h20v20H16z'/%3E%3Cpath d='M6 26h10M36 26h10M26 6v10M26 36v10'/%3E%3C/g%3E%3C/svg%3E");}
/* gold trim on the active coverflow card */
.country-china .cf-card.cf-on{border:2px solid #E3B84C;box-shadow:0 40px 90px rgba(154,10,32,.35),0 0 0 6px rgba(227,184,76,.14);}
.country-china .cf-card.cf-on .cf-top::before{content:"";position:absolute;inset:8px;border:1px solid rgba(255,233,168,.4);
  border-radius:12px;pointer-events:none;z-index:2;}
/* festive add-ons strip */
.country-china .cp-addons-inner{background:linear-gradient(135deg,#FBE9EC,#FDF3E3);
  border:1px solid rgba(200,16,46,.25);position:relative;overflow:hidden;}
.country-china .cp-addons-inner::before{content:"福";position:absolute;right:-8px;top:-24px;font-family:'Fraunces',serif;
  font-size:130px;font-weight:800;color:rgba(200,16,46,.07);pointer-events:none;}
@media (max-width:860px){
  .cn-watermark{font-size:150px;top:auto;bottom:16%;}
  .cn-seal{display:none;}
  .cn-lant.l2{display:none;}
  .cn-lant.l1{left:5%;}
  .cn-lant.l3{right:5%;}
  .cn-cloud.c2{display:none;}
  .cn-skyline{height:56px;}
}

/* ============================================================
   TAILOR-YOUR-PACKAGE CUSTOMIZER + OFFERS TICKER
   ============================================================ */
.cp-custom{max-width:1040px;margin:-64px auto 0;padding:0 20px 52px;position:relative;z-index:6;}
.cpz-wrap{background:#fff;border:1px solid var(--line);border-radius:26px;padding:36px 34px 30px;
  box-shadow:0 30px 80px rgba(8,16,28,.10);position:relative;overflow:hidden;}
.country-china .cpz-wrap{border:1px solid rgba(200,16,46,.22);}
.country-china .cpz-wrap::before{content:"福";position:absolute;right:-14px;bottom:-40px;font-family:'Fraunces',serif;
  font-size:170px;font-weight:800;color:rgba(200,16,46,.05);pointer-events:none;}
.cpz-head{text-align:center;margin-bottom:26px;}
.cpz-ic{font-size:30px;}
.cpz-head h3{font-family:'Fraunces',serif;font-size:27px;font-weight:700;color:var(--ink);margin:6px 0 6px;}
.cpz-head p{color:var(--ink-50);font-size:14.5px;margin:0;}
.cpz-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px 18px;}
.cpz-span2{grid-column:span 2;}
.cpz-field label{display:block;font-size:10.5px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#6a7a8c;margin-bottom:8px;}
.cpz-field input[type=date]{width:100%;border:1.5px solid var(--line);border-radius:12px;padding:11px 12px;font-size:14px;
  font-weight:700;font-family:'Cabinet Grotesk',sans-serif;color:var(--ink);outline:none;background:#fff;}
.cpz-field input[type=date]:focus{border-color:var(--cp);}
.cpz-step{display:flex;align-items:center;justify-content:space-between;border:1.5px solid var(--line);border-radius:12px;padding:5px;}
.cpz-step button{width:34px;height:34px;border-radius:9px;border:none;background:var(--cp-soft);color:var(--cp);font-size:19px;
  font-weight:800;cursor:pointer;line-height:1;transition:all .15s;}
.cpz-step button:hover{background:var(--cp);color:#fff;}
.cpz-step b{font-size:16px;color:var(--ink);}
.cpz-chips{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:26px;}
.cpz-chip{border:1.5px solid var(--line);background:#fff;border-radius:100px;padding:8px 15px;font-size:13px;font-weight:700;
  color:#41505f;cursor:pointer;font-family:'Cabinet Grotesk',sans-serif;transition:all .15s;}
.cpz-chip.on{background:var(--cp);border-color:var(--cp);color:#fff;box-shadow:0 6px 16px color-mix(in srgb,var(--cp) 35%,transparent);}
.cpz-seg{display:flex;border:1.5px solid var(--line);border-radius:12px;padding:4px;gap:4px;flex-wrap:wrap;}
.cpz-seg button{flex:1;border:none;background:transparent;border-radius:9px;padding:9px 10px;font-size:12.5px;font-weight:700;
  color:#5a6b7d;cursor:pointer;font-family:'Cabinet Grotesk',sans-serif;transition:all .15s;white-space:nowrap;}
.cpz-seg button.on{background:var(--cp);color:#fff;}
.cpz-bottom{display:flex;gap:24px;align-items:stretch;margin-top:26px;padding-top:24px;border-top:1px dashed var(--line);flex-wrap:wrap;}
.cpz-incl{flex:1;min-width:260px;background:var(--cp-soft);border-radius:16px;padding:16px 20px;}
.cpz-incl-t{font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--cp-deep);margin-bottom:9px;}
.cpz-incl ul{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:5px 18px;}
.cpz-incl li{font-size:13px;color:#3c4c5c;position:relative;padding-left:19px;line-height:1.45;}
.cpz-incl li::before{content:"✓";position:absolute;left:0;color:var(--cp);font-weight:800;}
.cpz-go{flex:0 0 auto;align-self:center;background:var(--cp);color:#fff;border:none;border-radius:15px;padding:18px 30px;
  font-size:16px;font-weight:800;font-family:'Cabinet Grotesk',sans-serif;cursor:pointer;transition:filter .2s,transform .2s;
  box-shadow:0 16px 36px color-mix(in srgb,var(--cp) 38%,transparent);}
.cpz-go:hover{filter:brightness(1.09);transform:translateY(-2px);}

/* offers / notice ticker */
.ticker-strip{background:var(--cp-deep,#0A1323);color:#fff;overflow:hidden;padding:13px 0;position:relative;}
.country-china .ticker-strip{background:linear-gradient(90deg,#4A0710,#7A0C1C 50%,#4A0710);border-top:1px solid rgba(245,197,66,.35);border-bottom:1px solid rgba(245,197,66,.35);}
.ticker-track{display:flex;width:max-content;animation:tickMove 36s linear infinite;}
.ticker-strip:hover .ticker-track{animation-play-state:paused;}
.ticker-group{display:flex;align-items:center;gap:56px;padding-right:56px;}
.tk-item{display:inline-flex;align-items:center;gap:10px;font-size:14px;font-weight:700;color:#fff;text-decoration:none;white-space:nowrap;}
a.tk-item:hover{color:var(--cp-accent,#F5C542);}
.tk-spark{font-style:normal;color:var(--cp-accent,#F5C542);}
.tk-item img{height:34px;border-radius:8px;display:block;box-shadow:0 4px 14px rgba(0,0,0,.3);}
@keyframes tickMove{from{transform:translateX(0)}to{transform:translateX(-50%)}}

@media (max-width:860px){
  .cpz-grid{grid-template-columns:1fr 1fr;}
  .cpz-span2{grid-column:span 2;}
  .cpz-incl ul{grid-template-columns:1fr;}
  .cpz-bottom{flex-direction:column;}
  .cpz-go{width:100%;}
}

/* customizer bridges the hero (red) into the page (white) */
@media (max-width:860px){
  .cp-custom{margin-top:-34px;}
}
/* give the hero a bit more base room so the floating card doesn't cover the greeting meta */
.country-page .cp-hero{padding-bottom:130px;}
/* packages section follows the ticker — trim its top padding */
.cp-packages{padding-top:48px;}

/* ---- Customizer v2: compact + friendlier; ticker sits right under the hero ---- */
.country-page .cp-hero{padding-bottom:84px;}
.cp-custom{margin:38px auto 0;padding:0 20px 40px;}
.cpz-wrap{padding:26px 28px 22px;border-radius:22px;}
.cpz-head{margin-bottom:18px;}
.cpz-ic{font-size:24px;}
.cpz-head h3{font-size:22px;margin:4px 0 4px;}
.cpz-head p{font-size:13px;}
.cpz-grid{gap:12px 14px;}
.cpz-field label{font-size:10px;margin-bottom:6px;}
.cpz-field input[type=date]{padding:8px 10px;font-size:13.5px;border-radius:10px;}
.cpz-step{padding:4px;border-radius:10px;}
.cpz-step button{width:28px;height:28px;font-size:16px;border-radius:7px;}
.cpz-step b{font-size:14.5px;}
.cpz-chip{padding:6px 12px;font-size:12.5px;border-width:1px;}
.cpz-seg{padding:3px;gap:3px;border-radius:10px;border-width:1px;}
.cpz-seg button{padding:7px 8px;font-size:12px;}
.cpz-bottom{margin-top:18px;padding-top:16px;gap:16px;}
.cpz-incl{padding:12px 16px;border-radius:13px;}
.cpz-incl-t{font-size:10px;margin-bottom:7px;}
.cpz-incl ul{gap:4px 14px;}
.cpz-incl li{font-size:12.5px;padding-left:17px;line-height:1.4;}
.cpz-go{padding:14px 24px;font-size:14.5px;border-radius:13px;}

/* ============================================================
   GENERIC COUNTRY DECORATIONS (all non-China country pages)
   ============================================================ */
.cx-watermark{position:absolute;right:-2%;top:8%;font-family:'Fraunces',serif;font-size:clamp(150px,26vw,330px);
  line-height:.9;font-weight:800;color:rgba(255,255,255,.055);pointer-events:none;user-select:none;}
.cx-float{position:absolute;pointer-events:none;opacity:.5;filter:drop-shadow(0 6px 18px rgba(0,0,0,.25));}
.cx-f1{left:6%;top:22%;width:86px;animation:cnDrift 9s ease-in-out infinite;}
.cx-f2{right:8%;top:34%;width:66px;opacity:.4;animation:cnDrift 12s ease-in-out infinite reverse;}
.cx-sparks{position:absolute;inset:0;pointer-events:none;}
.cx-sparks i{position:absolute;width:5px;height:5px;border-radius:50%;background:var(--cp-accent);opacity:0;
  box-shadow:0 0 10px 2px color-mix(in srgb,var(--cp-accent) 80%,transparent);animation:cnSpark 6.5s linear infinite;}
.cx-sparks i:nth-child(1){left:16%;bottom:16%;}
.cx-sparks i:nth-child(2){left:34%;bottom:8%;animation-delay:1.3s;}
.cx-sparks i:nth-child(3){left:56%;bottom:12%;animation-delay:2.6s;}
.cx-sparks i:nth-child(4){left:72%;bottom:7%;animation-delay:3.8s;}
.cx-sparks i:nth-child(5){left:86%;bottom:18%;animation-delay:5s;}
.cx-skyline{position:absolute;left:0;right:0;bottom:-1px;width:100%;height:92px;pointer-events:none;}
/* themed gold/accent trim for the active card on every country page */
.country-page .cf-card.cf-on{border:2px solid color-mix(in srgb,var(--cp-accent) 82%,#fff);}
@media (max-width:860px){
  .cx-watermark{font-size:130px;top:auto;bottom:14%;}
  .cx-f2{display:none;}
  .cx-skyline{height:56px;}
}

/* ============================================================
   NEW COUNTRY CARD GRADIENTS (30-country expansion)
   ============================================================ */
.bg-saudi{background:linear-gradient(145deg,#0C4A22,#1B7A3D 55%,#0C4A22);}
.bg-india{background:linear-gradient(145deg,#7A3608,#FF7A1A 55%,#7A3608);}
.bg-nepal{background:linear-gradient(145deg,#6E0A1E,#DC143C 55%,#6E0A1E);}
.bg-bhutan{background:linear-gradient(145deg,#7A3B00,#FF7A00 55%,#7A3B00);}
.bg-srilanka{background:linear-gradient(145deg,#4A0B1F,#8D153A 55%,#4A0B1F);}
.bg-vietnam{background:linear-gradient(145deg,#6E1109,#DA251D 55%,#6E1109);}
.bg-cambodia{background:linear-gradient(145deg,#021B5E,#032EA1 55%,#021B5E);}
.bg-philippines{background:linear-gradient(145deg,#01205E,#0038A8 55%,#01205E);}
.bg-japan{background:linear-gradient(145deg,#5E0117,#BC002D 55%,#5E0117);}
.bg-southkorea{background:linear-gradient(145deg,#093B78,#0F64CD 55%,#093B78);}
.bg-hongkong{background:linear-gradient(145deg,#6E1105,#DE2910 55%,#6E1105);}
.bg-qatar{background:linear-gradient(145deg,#4A0A1E,#8A1538 55%,#4A0A1E);}
.bg-oman{background:linear-gradient(145deg,#5E0716,#C8102E 55%,#5E0716);}
.bg-egypt{background:linear-gradient(145deg,#5E4700,#C09300 55%,#5E4700);}
.bg-jordan{background:linear-gradient(145deg,#5E0812,#CE1126 55%,#5E0812);}
.bg-azerbaijan{background:linear-gradient(145deg,#00546A,#00B5E2 55%,#00546A);}
.bg-georgia{background:linear-gradient(145deg,#6E000A,#D90012 55%,#6E000A);}
.bg-uzbekistan{background:linear-gradient(145deg,#00505E,#0099B5 55%,#00505E);}
.bg-switzerland{background:linear-gradient(145deg,#6E120A,#DA291C 55%,#6E120A);}
.bg-uk{background:linear-gradient(145deg,#010F38,#012169 55%,#010F38);}
.bg-usa{background:linear-gradient(145deg,#5E1119,#B22234 55%,#5E1119);}
.bg-canada{background:linear-gradient(145deg,#6E0210,#D80621 55%,#6E0210);}

/* Bangladesh — domestic luxury */
.bg-bangladesh{background:linear-gradient(145deg,#00402F,#006A4E 55%,#00402F);}

/* ── VIEW ALL button under the destination cards ── */
.dest-viewall{display:flex;justify-content:center;margin-top:36px;}
.btn-viewall{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 36px;border-radius:var(--r-2xl);
  border:2px solid var(--azure);color:var(--azure);background:transparent;
  font-family:'Cabinet Grotesk',sans-serif;font-size:15px;font-weight:800;
  text-decoration:none;transition:all .25s;
}
.btn-viewall:hover{background:var(--azure);color:#fff;transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,102,255,.30);}
@media (max-width:560px){.btn-viewall{width:100%;justify-content:center;}}
/* marker: VIEWALL-V5 */

/* ============================================================
   CORPORATE SERVICES PAGE
   ============================================================ */
.corp{--cg:rgba(255,255,255,.09);--cgb:rgba(255,255,255,.16);}
.corp em{font-style:italic;color:var(--azure);}
.corp-eyebrow{font-size:11.5px;font-weight:800;letter-spacing:.2em;color:#7FB4FF;margin-bottom:14px;}
.corp-eyebrow.dark{color:var(--azure);}

/* hero */
.corp-hero{position:relative;overflow:hidden;padding:150px 24px 90px;background:linear-gradient(160deg,#050B16 0%,#0A1830 45%,#081226 100%);color:#fff;}
.corp-hero-bg{position:absolute;inset:0;background:
  radial-gradient(ellipse at 20% 10%,rgba(0,102,255,.28),transparent 55%),
  radial-gradient(ellipse at 85% 80%,rgba(0,200,150,.16),transparent 55%);}
.corp-grid-lines{position:absolute;inset:0;opacity:.35;
  background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:64px 64px;mask-image:radial-gradient(ellipse at 50% 40%,#000 30%,transparent 78%);
  -webkit-mask-image:radial-gradient(ellipse at 50% 40%,#000 30%,transparent 78%);}
.corp-orb{position:absolute;border-radius:50%;filter:blur(70px);pointer-events:none;animation:orbFloat 18s ease-in-out infinite;}
.corp-orb.o1{width:460px;height:460px;background:rgba(0,102,255,.30);top:-140px;right:-80px;}
.corp-orb.o2{width:340px;height:340px;background:rgba(0,200,150,.20);bottom:-120px;left:-60px;animation-duration:24s;}
.corp-hero-inner{position:relative;max-width:1000px;margin:0 auto;text-align:center;}
.corp-hero h1{font-family:'Fraunces',serif;font-size:clamp(38px,6vw,70px);font-weight:700;line-height:1.05;margin:0 0 20px;letter-spacing:-1px;}
.corp-hero p{font-size:17px;line-height:1.65;color:rgba(255,255,255,.78);max-width:660px;margin:0 auto 32px;}
.corp-hero-cta{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
.corp-btn-primary{background:var(--azure);color:#fff;border:none;border-radius:14px;padding:15px 30px;font-size:15px;font-weight:800;
  font-family:'Cabinet Grotesk',sans-serif;cursor:pointer;transition:transform .2s,box-shadow .2s,filter .2s;box-shadow:0 14px 34px rgba(0,102,255,.4);}
.corp-btn-primary:hover{transform:translateY(-2px);filter:brightness(1.08);box-shadow:0 18px 42px rgba(0,102,255,.5);}
.corp-btn-primary.lg{padding:17px 38px;font-size:16px;}
.corp-btn-ghost{display:inline-flex;align-items:center;padding:15px 28px;border-radius:14px;border:1px solid var(--cgb);
  background:var(--cg);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);color:#fff;text-decoration:none;font-weight:800;font-size:15px;transition:.2s;}
.corp-btn-ghost:hover{background:rgba(255,255,255,.16);transform:translateY(-2px);}
.corp-stats{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:44px;}
.corp-stat{background:var(--cg);border:1px solid var(--cgb);-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
  border-radius:16px;padding:16px 26px;min-width:132px;}
.corp-stat b{display:block;font-family:'Fraunces',serif;font-size:26px;font-weight:700;}
.corp-stat span{font-size:12px;color:rgba(255,255,255,.62);font-weight:600;}

/* generic section */
.corp-sec{padding:78px 24px;max-width:1360px;margin:0 auto;}
.corp-sec-dark{max-width:none;background:linear-gradient(160deg,#071120,#0B1A33 55%,#071120);color:#fff;}
.corp-sec-dark .corp-sec-head h2,.corp-sec-dark .corp-air h2{color:#fff;}
.corp-sec-soft{max-width:none;background:linear-gradient(180deg,#F4F8FF,#fff);}
.corp-sec-head{text-align:center;max-width:640px;margin:0 auto 46px;}
.corp-sec-head h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.7vw,44px);font-weight:700;color:var(--ink);margin:0 0 14px;letter-spacing:-.5px;}
.corp-sec-head p{font-size:15.5px;line-height:1.6;color:var(--ink-50);margin:0;}
.corp-sec-dark .corp-sec-head p{color:rgba(255,255,255,.7);}

/* service cards */
.corp-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1360px;margin:0 auto;}
.corp-card{background:rgba(255,255,255,.72);border:1px solid rgba(10,25,50,.09);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);
  border-radius:22px;padding:28px 26px;transition:transform .25s,box-shadow .25s,border-color .25s;box-shadow:0 12px 34px rgba(10,25,50,.07);}
.corp-card:hover{transform:translateY(-5px);box-shadow:0 24px 54px rgba(10,25,50,.13);border-color:rgba(0,102,255,.28);}
.corp-card-ic{width:52px;height:52px;border-radius:15px;display:flex;align-items:center;justify-content:center;font-size:23px;
  background:linear-gradient(135deg,rgba(0,102,255,.14),rgba(0,200,150,.12));border:1px solid rgba(0,102,255,.18);margin-bottom:16px;}
.corp-card h3{font-family:'Fraunces',serif;font-size:19.5px;font-weight:700;color:var(--ink);margin:0 0 8px;}
.corp-card p{font-size:14px;line-height:1.6;color:var(--ink-50);margin:0;}

/* steps */
.corp-steps{max-width:900px;margin:0 auto;display:flex;flex-direction:column;gap:14px;}
.corp-step{display:flex;gap:20px;align-items:flex-start;background:var(--cg);border:1px solid var(--cgb);
  -webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);border-radius:18px;padding:22px 26px;transition:.25s;}
.corp-step:hover{background:rgba(255,255,255,.14);transform:translateX(4px);}
.corp-step-n{font-family:'Fraunces',serif;font-size:26px;font-weight:700;color:#5AA9FF;min-width:44px;line-height:1;}
.corp-step h4{font-size:17px;font-weight:800;margin:0 0 5px;color:#fff;font-family:'Cabinet Grotesk',sans-serif;}
.corp-step p{font-size:14px;line-height:1.55;color:rgba(255,255,255,.68);margin:0;}

/* corporate packages */
.corp-packs{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.corp-pack{background:rgba(255,255,255,.75);border:1px solid rgba(10,25,50,.09);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);
  border-radius:22px;padding:24px 22px;display:flex;flex-direction:column;box-shadow:0 12px 34px rgba(10,25,50,.07);transition:transform .25s,box-shadow .25s;}
.corp-pack:hover{transform:translateY(-5px);box-shadow:0 24px 54px rgba(10,25,50,.14);}
.corp-pack-top{display:flex;gap:12px;align-items:center;margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid var(--line);}
.corp-pack-flag{font-size:30px;line-height:1;}
.corp-pack h3{font-family:'Fraunces',serif;font-size:20px;font-weight:700;margin:0;color:var(--ink);}
.corp-pack-sub{font-size:12.5px;color:var(--ink-50);font-weight:600;margin-top:2px;}
.corp-pack-list{list-style:none;padding:0;margin:0 0 18px;display:flex;flex-direction:column;gap:8px;flex:1;}
.corp-pack-list li{font-size:13.2px;line-height:1.45;color:#41505f;padding-left:20px;position:relative;}
.corp-pack-list li::before{content:"✓";position:absolute;left:0;color:var(--azure);font-weight:800;}
.corp-pack-foot{border-top:1px solid var(--line);padding-top:14px;display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap;}
.corp-pack-price span{display:block;font-size:11px;color:var(--ink-50);font-weight:600;}
.corp-pack-price b{font-family:'Fraunces',serif;font-size:18px;color:var(--ink);}
.corp-btn-sm{background:var(--ink);color:#fff;border:none;border-radius:11px;padding:10px 15px;font-size:12.5px;font-weight:800;
  font-family:'Cabinet Grotesk',sans-serif;cursor:pointer;transition:.2s;white-space:nowrap;}
.corp-btn-sm:hover{background:var(--azure);transform:translateY(-1px);}
.corp-note{text-align:center;color:var(--ink-50);font-size:13.5px;margin:26px auto 0;max-width:620px;}

/* airfare */
.corp-air{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;max-width:1360px;margin:0 auto;padding:78px 24px;}
.corp-air h2{font-family:'Fraunces',serif;font-size:clamp(28px,3.6vw,42px);font-weight:700;margin:0 0 16px;letter-spacing:-.5px;}
.corp-air-left>p{font-size:15.5px;line-height:1.65;color:rgba(255,255,255,.72);margin:0 0 22px;}
.corp-air-points{list-style:none;padding:0;margin:0 0 28px;display:flex;flex-direction:column;gap:10px;}
.corp-air-points li{font-size:14.5px;color:rgba(255,255,255,.82);padding-left:26px;position:relative;}
.corp-air-points li::before{content:"✈";position:absolute;left:0;color:#5AA9FF;font-size:13px;}
.corp-routes{background:var(--cg);border:1px solid var(--cgb);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);
  border-radius:24px;padding:26px 24px;}
.corp-routes-h{font-size:11.5px;font-weight:800;letter-spacing:.16em;color:#7FB4FF;margin-bottom:18px;}
.corp-route{display:flex;align-items:center;gap:12px;padding:11px 0;border-bottom:1px dashed rgba(255,255,255,.13);font-size:13.5px;font-weight:700;color:#fff;}
.corp-route:last-of-type{border-bottom:none;}
.corp-route span{white-space:nowrap;}
.corp-route-line{flex:1;height:1px;background:linear-gradient(90deg,rgba(255,255,255,.3),rgba(255,255,255,.1));position:relative;}
.corp-route-plane{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);font-size:11px;color:#5AA9FF;background:#0B1A33;padding:0 5px;font-style:normal;}
.corp-routes-f{font-size:12px;color:rgba(255,255,255,.55);margin-top:16px;line-height:1.5;}

/* hotels */
.corp-hotels{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:1360px;margin:0 auto;}
.corp-hotel{background:linear-gradient(145deg,rgba(255,255,255,.85),rgba(244,248,255,.7));border:1px solid rgba(10,25,50,.08);
  -webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);border-radius:20px;padding:24px;transition:.25s;}
.corp-hotel:hover{transform:translateY(-4px);box-shadow:0 20px 44px rgba(10,25,50,.12);}
.corp-hotel-city{font-family:'Fraunces',serif;font-size:21px;font-weight:700;color:var(--ink);}
.corp-hotel-tier{font-size:12px;font-weight:800;color:var(--azure);letter-spacing:.06em;margin:4px 0 10px;}
.corp-hotel p{font-size:13.5px;line-height:1.55;color:var(--ink-50);margin:0;}

/* partners */
.corp-partners{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;max-width:1300px;margin:0 auto;}
.corp-partner{background:rgba(255,255,255,.8);border:1px solid rgba(10,25,50,.08);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  border-radius:18px;padding:24px 16px;text-align:center;text-decoration:none;display:block;transition:.25s;box-shadow:0 8px 24px rgba(10,25,50,.06);}
.corp-partner:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(10,25,50,.12);border-color:rgba(0,102,255,.25);}
.corp-partner img{max-width:100%;max-height:46px;object-fit:contain;margin:0 auto 10px;display:block;}
.corp-partner-mark{width:48px;height:48px;border-radius:14px;margin:0 auto 10px;display:flex;align-items:center;justify-content:center;
  font-family:'Fraunces',serif;font-size:19px;font-weight:700;color:var(--azure);
  background:linear-gradient(135deg,rgba(0,102,255,.13),rgba(0,200,150,.12));border:1px solid rgba(0,102,255,.16);}
.corp-partner-name{font-size:13.5px;font-weight:800;color:var(--ink);line-height:1.3;}
.corp-partner-ind{font-size:11.5px;color:var(--ink-50);margin-top:3px;}
.corp-partners-empty{text-align:center;color:var(--ink-50);padding:20px;}

/* join cta */
.corp-join{padding:20px 24px 90px;max-width:1360px;margin:0 auto;}
.corp-join-card{position:relative;overflow:hidden;text-align:center;border-radius:30px;padding:60px 32px;color:#fff;
  background:linear-gradient(150deg,#071224,#0C2244 50%,#071224);border:1px solid rgba(255,255,255,.12);}
.corp-join-orb{position:absolute;width:420px;height:420px;border-radius:50%;background:rgba(0,102,255,.32);filter:blur(80px);
  top:-160px;left:50%;transform:translateX(-50%);pointer-events:none;}
.corp-join-card h2{position:relative;font-family:'Fraunces',serif;font-size:clamp(28px,3.8vw,44px);font-weight:700;margin:0 0 14px;}
.corp-join-card>p{position:relative;font-size:16px;line-height:1.6;color:rgba(255,255,255,.76);max-width:600px;margin:0 auto 28px;}
.corp-join-card .corp-btn-primary{position:relative;}
.corp-join-meta{position:relative;display:flex;gap:22px;justify-content:center;flex-wrap:wrap;margin-top:22px;font-size:13px;color:rgba(255,255,255,.6);font-weight:600;}

@media (max-width:1000px){
  .corp-cards,.corp-hotels{grid-template-columns:repeat(2,1fr);}
  .corp-packs{grid-template-columns:repeat(2,1fr);}
  .corp-air{grid-template-columns:1fr;gap:34px;}
  .corp-partners{grid-template-columns:repeat(3,1fr);}
}
@media (max-width:620px){
  .corp-hero{padding:120px 18px 70px;}
  .corp-sec,.corp-air{padding:56px 18px;}
  .corp-cards,.corp-hotels,.corp-packs{grid-template-columns:1fr;}
  .corp-partners{grid-template-columns:repeat(2,1fr);}
  .corp-step{flex-direction:column;gap:8px;}
  .corp-join-card{padding:44px 22px;}
}

/* ── flying plane + contrail over the hero globe ── */
.gtrail{position:absolute;inset:0;z-index:3;pointer-events:none;}
.gplane{position:absolute;left:0;top:0;width:19px;height:19px;z-index:4;pointer-events:none;opacity:0;
  filter:drop-shadow(0 0 5px rgba(160,200,255,.9)) drop-shadow(0 1px 2px rgba(0,0,0,.5));
  transition:opacity .2s linear;will-change:transform;}
.gplane svg{width:100%;height:100%;display:block;}
@media (max-width:860px){ .gplane{width:14px;height:14px;} }

/* ── country-code badges (replace emoji flags) ── */
.cp-code{display:inline-flex;align-items:center;justify-content:center;margin-bottom:16px;
  padding:7px 16px;border-radius:100px;border:1.5px solid rgba(255,255,255,.42);
  color:#fff;font-family:'Cabinet Grotesk',sans-serif;font-size:13px;font-weight:800;letter-spacing:.34em;text-indent:.34em;
  background:rgba(255,255,255,.10);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
  box-shadow:0 6px 18px rgba(0,0,0,.18);}
.corp-pack-code{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:14px;
  font-family:'Fraunces',serif;font-size:16px;font-weight:700;color:var(--azure);letter-spacing:.08em;
  background:linear-gradient(135deg,rgba(0,102,255,.12),rgba(0,200,150,.10));border:1px solid rgba(0,102,255,.20);}
/* dest-card country code chip (replaces emoji flag) */
.dc-flag.dc-code{font-size:10.5px;font-weight:800;letter-spacing:.30em;text-indent:.30em;color:rgba(255,255,255,.85);
  border:1px solid rgba(255,255,255,.38);border-radius:100px;padding:3px 9px;display:inline-flex;width:max-content;
  background:rgba(255,255,255,.12);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);margin-bottom:6px;}

/* ══ COUNTRY PAGE — VISA FEATURE ══ */
/* hero buttons (replace the packages pill) */
.cp-hero-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:8px;}
.cp-hbtn{border:none;cursor:pointer;border-radius:100px;padding:14px 32px;font-size:15px;font-weight:800;
  font-family:'Cabinet Grotesk',sans-serif;transition:transform .2s,box-shadow .2s,background .2s;}
.cp-hbtn-solid{background:#fff;color:var(--ink);box-shadow:0 14px 34px rgba(0,0,0,.28);}
.cp-hbtn-solid:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(0,0,0,.36);}
.cp-hbtn-glass{background:rgba(255,255,255,.14);color:#fff;border:1.5px solid rgba(255,255,255,.42);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);}
.cp-hbtn-glass:hover{background:rgba(255,255,255,.24);transform:translateY(-2px);}

/* mode toggle inside the customizer */
.cpz-mode{display:flex;gap:8px;justify-content:center;margin:0 0 26px;background:rgba(10,25,50,.05);
  border:1px solid rgba(10,25,50,.08);border-radius:100px;padding:5px;width:max-content;margin-left:auto;margin-right:auto;}
.cpz-mode button{border:none;cursor:pointer;border-radius:100px;padding:11px 28px;font-size:14px;font-weight:800;
  font-family:'Cabinet Grotesk',sans-serif;background:transparent;color:var(--ink-50);transition:.2s;}
.cpz-mode button.on{background:var(--cp-primary,var(--azure));color:#fff;box-shadow:0 8px 20px rgba(10,25,50,.18);}

/* visa fields */
.cpz-grid-visa{grid-template-columns:repeat(3,1fr);}
.cpz-field-wide{grid-column:1/-1;}
.cpz-select{width:100%;padding:12px 14px;border:1.5px solid rgba(10,25,50,.14);border-radius:12px;
  font-family:'Cabinet Grotesk',sans-serif;font-size:14px;font-weight:700;color:var(--ink);background:#fff;cursor:pointer;}
.cpz-select:focus{outline:none;border-color:var(--cp-primary,var(--azure));}
.cpz-bottom-visa{align-items:center;}
.cpz-visa-note{font-size:13.5px;color:var(--ink-50);line-height:1.5;max-width:420px;}

/* visa requirements modal */
.vz-modal{position:fixed;inset:0;z-index:1200;display:none;}
.vz-modal.open{display:block;}
.vz-backdrop{position:absolute;inset:0;background:rgba(6,12,24,.62);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);}
.vz-card{position:relative;max-width:520px;margin:5vh auto;max-height:90vh;overflow-y:auto;background:#fff;border-radius:24px;
  padding:28px 26px 22px;box-shadow:0 40px 90px rgba(0,0,0,.4);animation:vzIn .3s cubic-bezier(.22,1,.36,1);}
@keyframes vzIn{from{opacity:0;transform:translateY(26px) scale(.97);}to{opacity:1;transform:none;}}
.vz-x{position:absolute;top:14px;right:16px;border:none;background:rgba(10,25,50,.06);width:34px;height:34px;border-radius:50%;
  font-size:19px;cursor:pointer;color:var(--ink);line-height:1;transition:.2s;}
.vz-x:hover{background:rgba(10,25,50,.12);transform:rotate(90deg);}
.vz-head{display:flex;gap:14px;align-items:center;margin-bottom:18px;padding-right:34px;}
.vz-ic{width:52px;height:52px;border-radius:15px;display:flex;align-items:center;justify-content:center;font-size:24px;
  background:linear-gradient(135deg,rgba(0,102,255,.13),rgba(0,200,150,.11));border:1px solid rgba(0,102,255,.18);flex-shrink:0;}
.vz-title{font-family:'Fraunces',serif;font-size:21px;font-weight:700;color:var(--ink);line-height:1.2;}
.vz-sub{font-size:13px;color:var(--ink-50);font-weight:700;margin-top:3px;}
.vz-req-t{font-size:11.5px;font-weight:800;letter-spacing:.14em;color:var(--azure);margin-bottom:10px;text-transform:uppercase;}
.vz-req{list-style:none;padding:0;margin:0 0 14px;display:flex;flex-direction:column;gap:8px;}
.vz-req li{font-size:13.8px;line-height:1.5;color:#33414f;padding:9px 12px 9px 34px;position:relative;
  background:#F5F8FC;border:1px solid rgba(10,25,50,.06);border-radius:11px;}
.vz-req li::before{content:"✓";position:absolute;left:12px;top:9px;color:var(--azure);font-weight:800;}
.vz-meta{display:flex;flex-direction:column;gap:5px;font-size:13px;color:var(--ink-50);font-weight:600;margin-bottom:6px;}
.vz-apply{width:100%;border:none;cursor:pointer;border-radius:14px;padding:15px;margin-top:10px;
  background:var(--azure);color:#fff;font-size:15.5px;font-weight:800;font-family:'Cabinet Grotesk',sans-serif;
  box-shadow:0 14px 30px rgba(0,102,255,.35);transition:.2s;}
.vz-apply:hover{transform:translateY(-2px);filter:brightness(1.07);box-shadow:0 18px 38px rgba(0,102,255,.45);}
.vz-wa{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:14px;padding:12px;border-radius:12px;
  background:#EAF9F0;border:1px solid #BFE9CE;color:#0E6E3C;font-size:13.5px;font-weight:700;text-decoration:none;transition:.2s;}
.vz-wa:hover{background:#DDF4E6;transform:translateY(-1px);}
.vz-wa b{font-weight:800;}
@media (max-width:640px){
  .cpz-grid-visa{grid-template-columns:1fr;}
  .cp-hbtn{width:100%;max-width:320px;}
  .vz-card{margin:3vh 14px;padding:22px 18px 18px;}
  .cpz-mode{width:100%;}
  .cpz-mode button{flex:1;}
  .cpz-bottom-visa{flex-direction:column;gap:14px;}
  .cpz-visa-note{max-width:none;text-align:center;}
}

/* ══ B2B PARTNER PORTAL ══ */
.b2b-wrap{position:relative;min-height:78vh;padding:70px 20px 90px;background:linear-gradient(165deg,#060D1A 0%,#0B1B36 55%,#081326 100%);overflow:hidden;}
.b2b-hero-orb{position:absolute;width:560px;height:560px;border-radius:50%;background:rgba(0,102,255,.26);filter:blur(90px);top:-200px;left:50%;transform:translateX(-50%);pointer-events:none;}
.b2b-card{position:relative;max-width:560px;margin:0 auto;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter:blur(22px);backdrop-filter:blur(22px);border-radius:26px;padding:38px 34px;color:#fff;box-shadow:0 30px 80px rgba(0,0,0,.4);}
.b2b-card-wide{max-width:860px;}
.b2b-head{text-align:center;margin-bottom:24px;}
.b2b-eyebrow{font-size:11.5px;font-weight:800;letter-spacing:.2em;color:#7FB4FF;margin-bottom:10px;}
.b2b-head h1{font-family:'Fraunces',serif;font-size:clamp(30px,4.5vw,42px);font-weight:700;margin:0 0 10px;}
.b2b-head h1 em{font-style:italic;color:#5AA9FF;}
.b2b-head p{font-size:14.5px;line-height:1.6;color:rgba(255,255,255,.72);margin:0;}
.b2b-link{color:#7FB4FF;text-decoration:none;font-weight:700;}
.b2b-tabs{display:flex;gap:6px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:100px;padding:5px;margin-bottom:20px;}
.b2b-tabs button{flex:1;border:none;cursor:pointer;border-radius:100px;padding:11px;font-size:14px;font-weight:800;
  font-family:'Cabinet Grotesk',sans-serif;background:transparent;color:rgba(255,255,255,.62);transition:.2s;}
.b2b-tabs button.on{background:var(--azure);color:#fff;box-shadow:0 8px 22px rgba(0,102,255,.4);}
.b2b-form label{display:block;font-size:12.5px;font-weight:800;margin:14px 0 6px;color:rgba(255,255,255,.85);}
.b2b-opt{font-weight:400;color:rgba(255,255,255,.45);}
.b2b-form input{width:100%;padding:12px 14px;border-radius:12px;border:1.5px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);color:#fff;font-family:'Cabinet Grotesk',sans-serif;font-size:14px;font-weight:600;}
.b2b-form input::placeholder{color:rgba(255,255,255,.35);}
.b2b-form input:focus{outline:none;border-color:#5AA9FF;background:rgba(255,255,255,.13);}
.b2b-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.b2b-btn{display:inline-block;width:100%;text-align:center;border:none;cursor:pointer;border-radius:13px;padding:14px 24px;margin-top:20px;
  background:var(--azure);color:#fff;font-size:15px;font-weight:800;font-family:'Cabinet Grotesk',sans-serif;text-decoration:none;
  box-shadow:0 14px 32px rgba(0,102,255,.4);transition:.2s;}
.b2b-btn:hover{transform:translateY(-2px);filter:brightness(1.08);}
.b2b-btn-ghost{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.22);box-shadow:none;}
.b2b-btn-sm{width:auto;margin-top:0;padding:11px 20px;font-size:13.5px;}
.b2b-note{font-size:12.5px;color:rgba(255,255,255,.55);margin-top:14px;text-align:center;line-height:1.5;}
.b2b-note a{color:#7FB4FF;font-weight:700;}
.b2b-alert{border-radius:13px;padding:13px 16px;font-size:13.5px;font-weight:600;line-height:1.5;margin-bottom:16px;}
.b2b-err{background:rgba(255,77,77,.14);border:1px solid rgba(255,77,77,.35);color:#FFB4B4;}
.b2b-ok{background:rgba(0,200,150,.13);border:1px solid rgba(0,200,150,.35);color:#9FEFD4;}
.b2b-warn{background:rgba(255,184,0,.12);border:1px solid rgba(255,184,0,.35);color:#FFDf9A;}
.b2b-perks{display:flex;flex-direction:column;gap:10px;margin-top:26px;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);}
.b2b-perk{display:flex;gap:12px;align-items:flex-start;font-size:13px;color:rgba(255,255,255,.7);line-height:1.5;}
.b2b-perk b{flex:0 0 30px;height:30px;border-radius:9px;display:flex;align-items:center;justify-content:center;
  background:rgba(0,102,255,.2);border:1px solid rgba(0,102,255,.35);color:#7FB4FF;font-size:13px;}
.b2b-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:20px;}
.b2b-stat{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.13);border-radius:18px;padding:20px 18px;}
.b2b-stat-n{font-family:'Fraunces',serif;font-size:26px;font-weight:700;color:#7FB4FF;word-break:break-all;}
.b2b-stat-l{font-size:13px;font-weight:800;margin:6px 0 8px;}
.b2b-stat-d{font-size:12px;color:rgba(255,255,255,.58);line-height:1.5;}
.b2b-share{background:rgba(0,102,255,.10);border:1px solid rgba(0,102,255,.3);border-radius:18px;padding:18px;margin-bottom:20px;}
.b2b-share-t{font-size:11.5px;font-weight:800;letter-spacing:.14em;color:#7FB4FF;margin-bottom:10px;}
.b2b-share-row{display:flex;gap:10px;}
.b2b-share-row input{flex:1;padding:11px 13px;border-radius:11px;border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.08);color:#fff;font-size:13px;font-family:monospace;}
.b2b-share-d{font-size:12.5px;color:rgba(255,255,255,.62);margin-top:10px;line-height:1.55;}
.b2b-how{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.11);border-radius:18px;padding:20px 22px;margin-bottom:8px;}
.b2b-how-t{font-size:11.5px;font-weight:800;letter-spacing:.14em;color:#7FB4FF;margin-bottom:12px;}
.b2b-how ol{margin:0;padding-left:18px;display:flex;flex-direction:column;gap:10px;}
.b2b-how li{font-size:13.5px;line-height:1.6;color:rgba(255,255,255,.75);}
.b2b-cta-row{display:flex;gap:12px;margin-top:20px;flex-wrap:wrap;}
.b2b-cta-row .b2b-btn{width:auto;flex:1;min-width:220px;}
/* floating partner-pricing pill on price pages */
.b2b-pill{position:fixed;left:18px;bottom:18px;z-index:900;display:inline-flex;align-items:center;
  padding:10px 18px;border-radius:100px;background:rgba(9,20,38,.92);border:1px solid rgba(0,102,255,.5);
  color:#fff;font-family:'Cabinet Grotesk',sans-serif;font-size:12.5px;font-weight:800;text-decoration:none;
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);box-shadow:0 14px 34px rgba(0,0,0,.4);transition:.2s;}
.b2b-pill:hover{transform:translateY(-2px);border-color:#5AA9FF;}
.b2b-pill-pending{border-color:rgba(255,184,0,.55);}
@media (max-width:760px){
  .b2b-row,.b2b-stats{grid-template-columns:1fr;}
  .b2b-card{padding:28px 20px;}
  .b2b-pill{left:12px;bottom:12px;font-size:11.5px;padding:9px 14px;}
}
/* links inside RacAi chat bubbles */
.msg-bubble .msg-link{color:#8FB8FF;font-weight:700;text-decoration:underline;text-underline-offset:2px;}
.msg-bubble .msg-link:hover{color:#B8D4FF;}
.msg.user .msg-bubble .msg-link{color:#fff;}

/* ── live flight fare results: floating panel under the search bar ── */
#fl-results{
  position:absolute;top:calc(100% + 12px);left:0;right:0;z-index:170;
  background:#fff;border:1px solid var(--border);border-radius:18px;
  box-shadow:0 30px 70px rgba(8,16,28,.22),0 0 0 1px rgba(8,16,28,.03);
  padding:16px 18px;max-height:460px;overflow-y:auto;
  animation:spanelIn .25s ease;
}
.flr-head{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.flr-x{border:none;cursor:pointer;background:#F1F5FB;color:var(--ink-50);width:28px;height:28px;border-radius:9px;
  font-size:13px;font-weight:800;line-height:1;flex:0 0 auto;transition:.15s;}
.flr-x:hover{background:#E5EDFA;color:var(--ink);}
.flr-loading{display:flex;align-items:center;gap:10px;padding:18px 6px;font-size:13.5px;font-weight:700;color:var(--ink-50);}
.flr-spin{width:16px;height:16px;border-radius:50%;border:2px solid rgba(0,102,255,.25);border-top-color:var(--azure);animation:flrSpin .8s linear infinite;}
@keyframes flrSpin{to{transform:rotate(360deg);}}
.flr-head{font-size:11.5px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--azure);margin:2px 0 10px;}
.flr-row{display:flex;align-items:center;gap:14px;padding:12px 14px;border:1px solid rgba(10,25,50,.08);border-radius:14px;margin-bottom:8px;
  background:linear-gradient(145deg,#fff,#F7FAFF);transition:.2s;}
.flr-row:hover{border-color:rgba(0,102,255,.3);box-shadow:0 10px 26px rgba(10,25,50,.08);transform:translateY(-1px);}
.flr-main{flex:1;min-width:0;}
.flr-al{font-size:14px;font-weight:800;color:var(--ink);}
.flr-meta{font-size:12px;color:var(--ink-50);font-weight:600;margin-top:2px;}
.flr-price{font-family:'Fraunces',serif;font-size:18px;font-weight:700;color:var(--ink);text-align:right;line-height:1.1;white-space:nowrap;}
.flr-price span{display:block;font-family:'Cabinet Grotesk',sans-serif;font-size:9.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-50);}
.flr-req{border:none;cursor:pointer;background:var(--azure);color:#fff;border-radius:11px;padding:10px 16px;
  font-family:'Cabinet Grotesk',sans-serif;font-size:12.5px;font-weight:800;white-space:nowrap;transition:.2s;}
.flr-req:hover{filter:brightness(1.1);transform:translateY(-1px);}
.flr-note{font-size:11.5px;color:var(--ink-50);margin-top:10px;line-height:1.5;}
.flr-empty{padding:16px 6px;font-size:13.5px;color:var(--ink-50);font-weight:600;display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
.flr-cta{border:none;cursor:pointer;background:var(--ink);color:#fff;border-radius:11px;padding:10px 16px;font-family:'Cabinet Grotesk',sans-serif;font-size:12.5px;font-weight:800;transition:.2s;}
.flr-cta:hover{background:var(--azure);}
@media (max-width:700px){
  .flr-row{flex-wrap:wrap;}
  .flr-price{text-align:left;}
  .flr-req{width:100%;}
}

/* airport autocomplete: IATA code pill + dropdowns above following sections */
.ac-item .ac-code{margin-left:auto;font-size:11px;font-weight:800;letter-spacing:.06em;color:var(--azure);
  background:#EAF2FF;border-radius:7px;padding:3px 8px;flex:0 0 auto;}
.search-center{position:relative;z-index:130;}
.search-box{position:relative;z-index:131;}
.ac-drop,.pax-pop{z-index:400;}

/* popovers float above every section, immune to stacking contexts */
.ac-drop,.pax-pop{position:fixed!important;z-index:99999!important;}
@media (max-width:760px){
  .ac-drop{left:12px!important;right:12px!important;width:auto!important;min-width:0!important;}
}

/* ── FILMS CAROUSEL: package-card style, centre card floats ── */
.films-section{padding-top:84px;padding-bottom:64px;}
.film-nav{display:flex;gap:10px;}
.film-arrow{width:42px;height:42px;border-radius:50%;border:1px solid var(--ink-08);background:#fff;
  color:var(--ink);font-size:20px;font-weight:700;cursor:pointer;transition:.2s;line-height:1;}
.film-arrow:hover{background:var(--azure);color:#fff;border-color:var(--azure);transform:translateY(-1px);}
.film-strip{display:flex;align-items:center;gap:20px;overflow-x:auto;
  padding:34px 8px 34px;   /* headroom for the scaled centre card */
  scrollbar-width:none;-ms-overflow-style:none;}
.film-strip::-webkit-scrollbar{display:none;}
.film-card{
  position:relative;flex:0 0 440px;aspect-ratio:16/9;border-radius:22px;
  cursor:pointer;
  border:1px solid var(--ink-08);
  box-shadow:0 14px 34px rgba(8,16,28,.12);
  background:#0B1526;overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.8,.3,1),box-shadow .35s,flex-basis .35s;
  z-index:1;
}
.film-card.is-center{
  /* bigger and ON TOP: scaling extends it over the inner edges of both
     neighbours (layout untouched), so it overlaps them — no lift */
  transform:scale(1.22);
  z-index:3;
  box-shadow:0 26px 60px rgba(8,16,28,.30);
}
.film-card:hover{transform:scale(1.02);}
.film-card.is-center:hover{transform:scale(1.23);}
.film-card.is-playing{
  flex-basis:680px;               /* the playing frame, a step larger */
  transform:none;z-index:4;
  box-shadow:0 30px 68px rgba(8,16,28,.32);
}
.film-skin{position:absolute;inset:0;}
.film-card.is-playing .film-skin{display:none;}
.film-poster{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;}
.film-skin::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(5,10,20,.05) 40%,rgba(5,10,20,.68) 100%);}
.film-play{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2;
  width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.93);color:var(--azure);box-shadow:0 10px 28px rgba(5,10,20,.35);transition:.25s;
}
.film-play svg{width:23px;height:23px;margin-left:2px;}
.film-card:hover .film-play{transform:translate(-50%,-50%) scale(1.1);background:var(--azure);color:#fff;}
.film-cap{position:absolute;left:16px;right:16px;bottom:13px;z-index:2;color:#fff;
  font-size:14px;font-weight:800;letter-spacing:.01em;text-shadow:0 2px 10px rgba(0,0,0,.4);}
.film-host{position:absolute;inset:0;display:none;}
.film-card.is-playing .film-host{display:block;}
.film-host iframe,.film-host video{width:100%;height:100%;border:0;display:block;background:#000;}
.film-stop{position:absolute;top:10px;right:10px;z-index:5;display:none;
  width:30px;height:30px;border-radius:50%;border:1px solid rgba(255,255,255,.3);
  background:rgba(5,10,20,.55);color:#fff;font-size:13px;font-weight:800;cursor:pointer;transition:.2s;}
.film-card.is-playing .film-stop{display:block;}
.film-stop:hover{background:#FF3B48;}
@media (max-width:760px){
  .film-card{flex:0 0 78vw;}
  .film-card.is-center{transform:scale(1.08);}
  .film-card.is-center:hover{transform:scale(1.09);}
  .film-card.is-playing{flex-basis:94vw;}
  .film-strip{padding:22px 6px 22px;gap:14px;}
  .films-section{padding-top:60px;padding-bottom:48px;}
}



/* breathing room after the last row of the country grid */
.dest-grid{padding-bottom:56px;}



/* FINAL RULE — guaranteed space between any page content and the footer.
   (A duplicate .page-wrap rule mid-file was zeroing the bottom padding;
   this last-word override wins over it permanently, however many
   destination cards the grid ever holds.) */
.page-wrap{padding-bottom:96px!important;}

/* ── FULL PACKAGE DETAILS POPUP (country pages) ── */
.cf-hasdet{cursor:pointer;}
.cf-more{margin-top:6px;font-size:11.5px;font-weight:800;letter-spacing:.03em;color:var(--azure);opacity:0;transition:.25s;}
.cf-on .cf-more{opacity:1;}
.pkgm{position:fixed;inset:0;z-index:9000;display:none;align-items:center;justify-content:center;
  padding:24px;background:rgba(6,12,22,.62);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);}
.pkgm.open{display:flex;animation:pkgmFade .22s ease;}
@keyframes pkgmFade{from{opacity:0}to{opacity:1}}
.pkgm-box{position:relative;width:min(880px,100%);max-height:88vh;overflow-y:auto;background:#fff;
  border-radius:26px;box-shadow:0 44px 120px rgba(4,10,20,.5);animation:pkgmUp .3s cubic-bezier(.2,.9,.3,1.1);}
@keyframes pkgmUp{from{opacity:0;transform:translateY(26px) scale(.98)}to{opacity:1;transform:none}}
.pkgm-x{position:absolute;top:16px;right:16px;z-index:3;width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.35);background:rgba(8,16,28,.5);color:#fff;font-size:14px;font-weight:800;
  cursor:pointer;transition:.2s;}
.pkgm-x:hover{background:#E8362D;border-color:#E8362D;}
.pkgm-hero{position:relative;min-height:230px;display:flex;align-items:flex-end;
  background-size:cover;background-position:center;background-color:#0A1526;}
.pkgm-hero::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(6,12,22,.15) 0%,rgba(6,12,22,.82) 100%);}
.pkgm-hero.no-img{background:linear-gradient(135deg,#0A1526,#12325E);}
.pkgm-hero-in{position:relative;z-index:2;padding:26px 30px;color:#fff;width:100%;}
.pkgm-chips{display:flex;gap:8px;margin-bottom:10px;flex-wrap:wrap;}
.pkgm-chip{background:rgba(255,255,255,.2);backdrop-filter:blur(6px);border-radius:100px;padding:5px 12px;
  font-size:10.5px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;}
.pkgm-chip.hot{background:#E8362D;}
.pkgm-hero-in h3{font-family:'Fraunces',serif;font-size:28px;font-weight:700;line-height:1.15;margin:0 0 8px;}
.pkgm-sub{font-size:13.5px;font-weight:700;color:rgba(255,255,255,.86);}
.pkgm-body{padding:26px 30px 8px;}
.pkgm-sec{margin-bottom:24px;}
.pkgm-sec h4{font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#8A98AB;margin:0 0 12px;}
.pkgm-sec p{font-size:14.5px;line-height:1.72;color:#37475C;margin:0;}
.pkgm-sec ul{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:1fr 1fr;gap:9px 20px;}
.pkgm-sec ul li{display:flex;gap:9px;font-size:13.5px;line-height:1.5;color:#37475C;}
.pkgm-sec ul li span{flex:none;font-weight:900;}
.pkgm-sec ul.inc li span{color:#0B8A46;}
.pkgm-sec ul.exc li span{color:#C23B33;}
.pkgm-sec ul.gold li span{color:#C79A3A;}
.pkgm-sec ul.note li span{color:#8A98AB;}
.pkgm-itin{list-style:none;counter-reset:d;padding:0;margin:0;}
.pkgm-itin li{counter-increment:d;position:relative;padding:0 0 16px 46px;font-size:14px;line-height:1.65;color:#37475C;
  border-left:2px solid #E4EBF5;margin-left:14px;}
.pkgm-itin li:last-child{border-left-color:transparent;padding-bottom:0;}
.pkgm-itin li::before{content:counter(d);position:absolute;left:-15px;top:-2px;width:28px;height:28px;border-radius:50%;
  background:var(--cp,#0066FF);color:#fff;font-size:12px;font-weight:800;display:flex;align-items:center;justify-content:center;}
.pkgm-foot{position:sticky;bottom:0;display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  padding:16px 30px;background:#fff;border-top:1px solid #EDF1F7;}
.pkgm-price{font-size:12px;font-weight:700;color:#7A8798;}
.pkgm-price b{font-family:'Fraunces',serif;font-size:26px;font-weight:700;color:#0A1526;margin-left:4px;}
.pkgm-price s{color:#A9B6C6;font-size:14px;margin-left:6px;}
.pkgm-book{margin-left:auto;border:none;cursor:pointer;border-radius:100px;padding:14px 30px;
  background:linear-gradient(135deg,#0066FF,#0047B3);color:#fff;font-size:14.5px;font-weight:800;letter-spacing:.02em;
  box-shadow:0 12px 30px rgba(0,102,255,.32);transition:.2s;}
.pkgm-book:hover{filter:brightness(1.1);transform:translateY(-1px);}
@media (max-width:700px){
  .pkgm{padding:0;}
  .pkgm-box{max-height:100vh;border-radius:0;width:100%;}
  .pkgm-hero-in h3{font-size:22px;}
  .pkgm-body{padding:20px 20px 8px;}
  .pkgm-sec ul{grid-template-columns:1fr;}
  .pkgm-foot{padding:14px 20px;}
  .pkgm-book{width:100%;margin-left:0;}
}

/* ── RACTRIP FILMS: the rail breaks out of the container and runs the
      full width of the window, so cards flow off both edges like a
      cinema reel. The heading above it stays aligned with the page. ── */
.film-strip{
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding-left:clamp(16px,3vw,56px);
  padding-right:clamp(16px,3vw,56px);
  scroll-padding-inline:clamp(16px,3vw,56px);
}
@media (max-width:860px){
  .film-strip{ padding-left:14px; padding-right:14px; }
}

/* ── ALIGNMENT: every block on the page shares one left and right edge.
      Sections, the nav and the stats bar already sat on that line; the
      hero text sat 48px inside it (its max-width counted its own padding)
      and the search box 120px inside it (it was simply narrower). ── */
.hero-content{ max-width:1656px; }   /* 1560 of content + its 2×48 padding */
.search-box{ max-width:1560px; }
.vai-inner{ max-width:1560px; }

/* ── HERO REFINEMENTS ─────────────────────────────────────────── */

/* 1. search box back to its earlier width, centred, with a soft blue
      glow so the white card lifts off the dark hero */
.search-box{
  max-width:1320px;
  box-shadow:
    0 0 0 1px rgba(120,175,255,.22),
    0 0 34px rgba(64,140,255,.30),
    0 0 90px rgba(0,102,255,.20),
    0 30px 70px rgba(5,10,20,.30);
}

/* 2. KPI row a little larger, filling the space up to the scroll cue */
.hero-kpis{ gap:clamp(30px,3vw,46px); margin-top:56px; padding-top:34px; }
.kpi-val{ font-size:clamp(34px,2.3vw,42px); }
.kpi-lbl{ font-size:12.5px; letter-spacing:.09em; margin-top:6px; }

/* 3. the scroll cue drops to the very bottom so the KPIs read as the
      last thing above it, not beside it */
.hero-scroll{ bottom:14px; }

/* 4. globe a touch bigger and lifted slightly */
.globe-wrap{ width:520px; height:520px; }
.globe-stage{ max-width:580px; transform:translateY(-22px); }

/* 5. review badge nudged right of centre */
.rating-float{ left:58%; }

@media (max-width:1100px){
  .globe-wrap{ width:min(440px,42vw); height:min(440px,42vw); }
  .globe-stage{ transform:translateY(-12px); }
  .rating-float{ left:50%; }
}
@media (max-width:860px){
  .globe-wrap{ width:min(360px,78vw); height:min(360px,78vw); }
  .globe-stage{ transform:none; }
  .hero-kpis{ gap:22px; margin-top:38px; padding-top:26px; }
  .kpi-val{ font-size:28px; }
}

/* headline block nudged right; search bar lifted closer to the hero */
.hero-left{ padding-left:clamp(0px,2.2vw,44px); }
.search-center{ padding-top:16px; }
@media (max-width:860px){
  .hero-left{ padding-left:0; }
  .search-center{ padding-top:10px; }
}


/* ── DESTINATIONS PAGE: four countries per row (was three) ── */
.dest-all-grid{ grid-template-columns:repeat(4,1fr); gap:16px; }
.dest-all-grid .dc{ min-height:clamp(250px,20vw,300px); }
@media (max-width:1100px){ .dest-all-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:820px){  .dest-all-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){  .dest-all-grid{ grid-template-columns:1fr; } }

/* ── DESTINATIONS PAGE: wider canvas, square cards, search bar ── */
.page-wrap.dest-page{ max-width:1400px; }
.dest-all-grid{ gap:18px; }
.dest-all-grid .dc{
  aspect-ratio:1/1;          /* perfect squares */
  min-height:0;
  height:auto;
}
@supports not (aspect-ratio:1/1){ .dest-all-grid .dc{ min-height:320px; } }

/* search bar */
.dsearch{
  position:relative; display:flex; align-items:center; gap:12px;
  background:#fff; border:1.5px solid var(--border); border-radius:100px;
  padding:14px 20px; margin:0 0 22px; transition:.2s;
  box-shadow:0 6px 22px rgba(8,16,28,.06);
}
.dsearch:focus-within{ border-color:var(--azure); box-shadow:0 0 0 4px rgba(0,102,255,.10),0 6px 22px rgba(8,16,28,.06); }
.dsearch-ic{ font-size:15px; opacity:.5; }
#destSearch{
  flex:1; border:none; outline:none; background:transparent;
  font:inherit; font-size:15px; font-weight:600; color:var(--ink);
}
#destSearch::placeholder{ color:#93A1B5; font-weight:500; }
.dsearch-x{
  display:none; align-items:center; justify-content:center;
  width:26px; height:26px; border-radius:50%; border:none; cursor:pointer;
  background:var(--ink-08); color:var(--ink); font-size:12px; font-weight:800;
}
.dsearch-x:hover{ background:var(--coral); color:#fff; }
.dsearch-count{ font-size:12.5px; font-weight:700; color:var(--ink-50); white-space:nowrap; }
.dsearch-none{ display:none; margin:0 0 22px; font-size:15px; color:var(--ink-50); }
.dsearch-none a{ color:var(--azure); font-weight:700; }

@media (max-width:560px){
  .dsearch{ padding:12px 16px; }
  #destSearch{ font-size:16px; }        /* stops iOS zooming on focus */
  .dsearch-count{ display:none; }
}

/* country cards behave like the old destination cards but are links */
a.dc-country-card{ text-decoration:none; display:flex; align-items:flex-end; }
/* name + cities + price all sit at the bottom, as before;
   only the package count stays pinned at the top */
a.dc-country-card .dc-body{ padding:20px 22px; }
a.dc-country-card .dc-city{ font-size:clamp(19px,1.4vw,23px); line-height:1.15; }
a.dc-country-card .dc-country{
  font-size:11.5px; opacity:.8; margin-top:5px; letter-spacing:.05em;
  text-transform:uppercase; font-weight:700;
}
a.dc-country-card .dc-bottom{ margin-top:12px; }
/* a stronger bottom fade so the text stays readable over any photo */
a.dc-country-card .dc-grad{
  background:linear-gradient(180deg,rgba(6,12,22,.06) 0%,rgba(6,12,22,.02) 38%,rgba(6,12,22,.62) 72%,rgba(6,12,22,.86) 100%);
}

/* ═══════════════════════════════════════════════════════════════
   SEARCH BOX — frosted glass, one control capsule, multi-city
   ═══════════════════════════════════════════════════════════════ */

/* the card itself: real glass over the hero, not flat white */
.search-box{
  background:linear-gradient(180deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.80) 100%);
  -webkit-backdrop-filter:blur(30px) saturate(165%);
  backdrop-filter:blur(30px) saturate(165%);
  border:1px solid rgba(255,255,255,.65);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 0 0 1px rgba(120,175,255,.18),
    0 0 34px rgba(64,140,255,.26),
    0 0 90px rgba(0,102,255,.16),
    0 34px 80px rgba(5,12,26,.34);
  overflow:visible;
}
/* a real mouse pointer inside the whole panel */
.search-box, .search-box *{ cursor:auto; }
.search-box input, .search-box textarea{ cursor:text; }
.search-box button, .search-box label, .search-box .stab,
.search-box .seg-opt, .search-box .pax-trigger, .search-box .sf-swap,
.search-box .chip, .search-box a{ cursor:pointer; }
body.in-search #cursor{ opacity:0 !important; }

/* tabs sit on the glass */
.search-tabs{
  background:linear-gradient(180deg, rgba(246,250,255,.72), rgba(236,243,253,.55));
  border-bottom:1px solid rgba(140,170,210,.22);
  -webkit-backdrop-filter:blur(18px); backdrop-filter:blur(18px);
}
.stab{ color:rgba(10,21,38,.55); transition:.22s; }
.stab:hover{ color:var(--azure); background:rgba(255,255,255,.5); }
.stab.on{
  background:rgba(255,255,255,.94); color:var(--azure);
  box-shadow:0 -1px 0 rgba(255,255,255,.9) inset, 0 6px 18px rgba(8,20,40,.10);
}

/* ── ONE CAPSULE: trip type · Nonstop · Group Air Fare ── */
.sp-top{ padding:16px 22px 6px; }
.sp-capsule{
  display:inline-flex; align-items:center; gap:6px; flex-wrap:wrap;
  padding:5px 6px; border-radius:100px;
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(240,246,255,.62));
  border:1px solid rgba(140,170,210,.28);
  -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 6px 18px rgba(8,20,40,.08);
}
.cap-div{ width:1px; height:22px; background:rgba(140,170,210,.32); margin:0 2px; }
.sp-capsule .seg{ background:transparent; border:none; padding:0; gap:2px; box-shadow:none; }
.sp-capsule .seg-opt{ border-radius:100px; padding:8px 17px; color:rgba(10,21,38,.62); }
.sp-capsule .seg-opt:hover{ background:rgba(255,255,255,.7); color:var(--ink); }
.sp-capsule .seg-opt.on{
  background:linear-gradient(135deg,#0066FF,#0B49B8); color:#fff;
  box-shadow:0 6px 16px rgba(0,102,255,.34);
}
.sp-capsule .chk{ padding:0 10px; font-size:13px; color:rgba(10,21,38,.72); cursor:pointer; }
.sp-capsule .gfx-btn{ margin:0; padding:9px 17px; }

/* ── fields ── */
.sp-fields{ border-top:1px solid rgba(140,170,210,.20); }
.sf{ border-right:1px solid rgba(140,170,210,.20); }
.sf-lbl{ color:rgba(10,21,38,.50); }
.sf input, .sf select{ background:transparent; }
.sf:focus-within{ background:rgba(255,255,255,.55); }
.sf-swap{
  background:rgba(255,255,255,.92); border:1px solid rgba(140,170,210,.34);
  box-shadow:0 4px 12px rgba(8,20,40,.10);
}
.sf-swap:hover{ background:var(--azure); color:#fff; border-color:var(--azure); }
.search-go{
  background:linear-gradient(135deg,#0066FF,#0B49B8);
  box-shadow:0 10px 26px rgba(0,102,255,.32);
}
.search-go:hover{ filter:brightness(1.08); }
.sp-suggest .chip{
  background:rgba(255,255,255,.72); border:1px solid rgba(140,170,210,.30);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
}
.sp-suggest .chip:hover{ background:var(--azure); color:#fff; border-color:var(--azure); }

/* ── MULTI-CITY ── */
.mc{ display:none; padding:14px 22px 20px; }
.spanel.is-multi .sp-fields{ display:none; }
.spanel.is-multi .mc{ display:block; }
.mc-rows{ display:flex; flex-direction:column; gap:10px; }
.mc-row{
  display:flex; align-items:stretch; gap:0; position:relative;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(140,170,210,.30); border-radius:16px;
  -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
  box-shadow:0 4px 14px rgba(8,20,40,.06);
  animation:mcIn .26s cubic-bezier(.2,.9,.3,1.1);
}
@keyframes mcIn{ from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:none} }
.mc-n{
  flex:none; width:38px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#0066FF,#0B49B8); color:#fff;
  font-size:13px; font-weight:800; border-radius:15px 0 0 15px;
}
.mc-row .sf{ border-right:1px solid rgba(140,170,210,.22); min-height:62px; }
.mc-row .mc-f{ flex:1 1 0; min-width:0; }
.mc-row .mc-d{ flex:0 0 190px; border-right:none; }
.mc-swap{ position:static; align-self:center; margin:0 -12px; z-index:2; flex:none; }
.mc-del{
  flex:none; width:42px; display:none; align-items:center; justify-content:center;
  border:none; background:transparent; color:rgba(10,21,38,.35);
  font-size:14px; font-weight:800; border-radius:0 15px 15px 0; transition:.18s;
}
.mc-del:hover{ background:rgba(232,54,45,.10); color:#E8362D; }
.mc-foot{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-top:14px; }
.mc-add{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(0,102,255,.07); border:1px dashed rgba(0,102,255,.42);
  color:var(--azure); font-size:13.5px; font-weight:800;
  padding:11px 20px; border-radius:100px; transition:.2s;
}
.mc-add:hover{ background:rgba(0,102,255,.14); border-style:solid; }
.mc-add span{ font-size:15px; }
.mc-right{ margin-left:auto; display:flex; align-items:center; gap:12px; }
.mc-pax{
  border:1px solid rgba(140,170,210,.30); border-radius:14px;
  background:rgba(255,255,255,.62); padding:8px 16px; min-height:0;
}
.mc-go{ border-radius:14px; padding:0 30px; min-height:52px; }

@media (max-width:860px){
  .sp-capsule{ width:100%; justify-content:center; }
  .cap-div{ display:none; }
  .mc-row{ flex-wrap:wrap; }
  .mc-n{ width:100%; height:26px; border-radius:15px 15px 0 0; }
  .mc-row .mc-f, .mc-row .mc-d{ flex:1 1 100%; border-right:none; border-bottom:1px solid rgba(140,170,210,.20); }
  .mc-swap{ margin:0 auto; }
  .mc-right{ margin-left:0; width:100%; }
  .mc-go{ flex:1; }
}

/* ── VISA tab: the country-page customizer, inside the search card ── */
.vzp{ padding:18px 22px 20px; }
.vzp-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:12px 22px; }
.vzp-field{ grid-column:span 2; }                 /* row 1: country · living in · visa type */
.vzp-field.vzp-wide{ grid-column:span 3; }        /* row 2: duration | occupation, side by side */
.vzp-field label{
  display:block; font-size:10.5px; font-weight:800; letter-spacing:.12em;
  text-transform:uppercase; color:var(--ink-50); margin-bottom:7px;
}
.vzp-select{
  width:100%; padding:12px 14px; border:1.5px solid var(--border); border-radius:12px;
  background:#fff; font:inherit; font-size:14px; font-weight:600; color:var(--ink); cursor:pointer;
}
.vzp-select:focus{ outline:none; border-color:var(--azure); box-shadow:0 0 0 4px rgba(0,102,255,.10); }
.vzp-seg{ display:flex; flex-wrap:wrap; gap:7px; }
.vzp-seg button{
  border:1.5px solid var(--border); background:#fff; color:var(--ink-80);
  padding:9px 16px; border-radius:100px; font-size:13px; font-weight:700; cursor:pointer; transition:.18s;
}
.vzp-seg button:hover{ border-color:var(--azure); color:var(--azure); }
.vzp-seg button.on{
  background:linear-gradient(135deg,#0066FF,#0B49B8); border-color:transparent; color:#fff;
  box-shadow:0 6px 16px rgba(0,102,255,.30);
}

.vzp-bottom{
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  margin-top:14px; padding-top:13px; border-top:1px solid var(--border);
}
.vzp-note{ font-size:13px; color:var(--ink-50); font-weight:600; }
.vzp-go{
  margin-left:auto; border:none; cursor:pointer; border-radius:100px; padding:12px 24px;
  background:linear-gradient(135deg,#0066FF,#0B49B8); color:#fff; font-size:14px; font-weight:800;
  box-shadow:0 10px 26px rgba(0,102,255,.30); transition:.2s;
}
.vzp-go:hover{ filter:brightness(1.08); transform:translateY(-1px); }

/* children's ages inside the hotel picker */
.ho-ages{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.ho-age{
  padding:8px 10px; border:1.5px solid var(--border); border-radius:10px;
  font:inherit; font-size:13px; font-weight:600; background:#fff; cursor:pointer;
}
@media (max-width:1000px){
  .vzp-field, .vzp-field.vzp-wide{ grid-column:span 3; }
}
@media (max-width:760px){
  .vzp-field, .vzp-field.vzp-wide{ grid-column:1 / -1; }
  .vzp-go{ margin-left:0; width:100%; }
}


/* ═══════════════════════════════════════════════════════════════
   SEARCH CARD v2 — containment, uniform panels, one button style
   (appended last: these rules win over everything above)
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. EVERY PANEL SHARES ONE FOOTPRINT ─────────────────────────
      The card no longer jumps height when you switch tabs, and the
      field row is pinned to the bottom edge of the panel on every
      tab, so Flights / Tours / Hotels / Umrah all line up. */
.spanel{ min-height:158px; }
.spanel.on{ display:flex; flex-direction:column; }
.spanel.on > .sp-fields{ margin-top:auto; }
.sp-suggest:empty{ display:none; }
.spanel[data-panel="visa"].on > .vzp{ margin-top:auto; }

/* ── 2. ONE ACTION BUTTON STYLE FOR ALL FIVE TABS ────────────────
      Same pill, same gradient, same glow as the Group Air Fare
      button — floated inside the row instead of bleeding into the
      card's corner. */
.sp-fields{ align-items:stretch; padding-right:14px; }
.sp-fields .sf:last-of-type{ border-right:none !important; }

.sp-fields .search-go,
.mc-go,
.vzp-go{
  flex:0 0 auto; align-self:center;
  height:56px; min-height:56px; padding:0 32px; margin-left:16px;
  border:none; border-radius:100px !important;
  background:linear-gradient(135deg,#0066FF,#0B49B8); color:#fff;
  font-family:'Cabinet Grotesk',sans-serif; font-size:15px; font-weight:800;
  letter-spacing:.01em; white-space:nowrap;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  box-shadow:0 10px 26px rgba(0,102,255,.32), inset 0 1px 0 rgba(255,255,255,.22);
  transition:transform .2s, box-shadow .2s, filter .2s;
  cursor:pointer;
}
.sp-fields .search-go:hover,
.mc-go:hover,
.vzp-go:hover{
  filter:brightness(1.08); transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,102,255,.40), inset 0 1px 0 rgba(255,255,255,.22);
}
.sp-fields .search-go:active,
.mc-go:active,
.vzp-go:active{ transform:translateY(0); }
.sp-fields .search-go svg{ width:19px; height:19px; flex:0 0 auto; transition:transform .22s; }
.sp-fields .search-go:hover svg{ transform:scale(1.12); }
.vzp-go{ margin-left:auto; }

/* ── 3. THE CARD ALWAYS CLOSES CLEANLY AT THE BOTTOM ─────────────
      The Popular strip is the card's bottom edge, so it keeps the
      rounding on every tab (it used to be hidden on Hotels, which
      left two square corners). */
.search-tags{
  border-radius:0 0 var(--r-xl) var(--r-xl);
  display:flex !important;
  align-items:center; gap:12px; flex-wrap:wrap;
  padding:13px 24px;
}
.search-tags .tag-row{ display:flex; gap:8px; flex-wrap:wrap; }
.search-tags .tag{
  padding:6px 15px; border-radius:100px; font-size:12.5px; font-weight:700;
  color:rgba(10,21,38,.68); border:1px solid rgba(140,170,210,.32);
  background:rgba(255,255,255,.60); cursor:pointer; transition:.18s;
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
}
.search-tags .tag:hover{
  background:#fff; color:var(--azure); border-color:var(--azure);
  transform:translateY(-1px); box-shadow:0 4px 12px rgba(0,102,255,.16);
}

/* ── 4. UMRAH — readable, self-explanatory distance controls ───── */
.spanel[data-panel="umrah"] .sp-top-wrap{
  align-items:flex-end; gap:14px 34px; flex-wrap:wrap;
  padding:16px 24px 12px;
}
.spanel[data-panel="umrah"] .seg-cap{
  font-size:10px; letter-spacing:.09em; color:rgba(10,21,38,.55);
  white-space:nowrap;
}
.seg-hint{
  flex:1 1 100%; margin:2px 0 0;
  font-size:12.5px; font-weight:600; line-height:1.5;
  color:rgba(10,21,38,.52);
}
.spanel[data-panel="umrah"] .sp-fields .sf{ flex:1 1 0; }
.sf-select select{
  border:none; background:transparent; width:100%; padding:0;
  font-family:'Cabinet Grotesk',sans-serif; font-size:15px; font-weight:600;
  color:var(--ink); outline:none; cursor:pointer; appearance:none;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238795a6' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right center;
  padding-right:18px;
}

/* ── 5. HOTELS + TOURS — same rhythm as Flights ──────────────── */
.spanel[data-panel="tours"] .sp-fields,
.spanel[data-panel="hotels"] .sp-fields{ border-top:none; min-height:88px; }
.spanel[data-panel="tours"] .sp-suggest,
.spanel[data-panel="hotels"] .sp-suggest{ padding:12px 24px 0; }

/* ── 6. VISA — its button now matches the other four ──────────── */
.vzp{ padding:18px 24px 18px; }
.vzp-bottom{ margin-top:16px; padding-top:14px; border-top:1px solid rgba(140,170,210,.24); }

/* ── 7. MOBILE ───────────────────────────────────────────────── */
@media (max-width:860px){
  .spanel{ min-height:0; }
  .sp-fields{ flex-direction:column; padding:0 0 14px; }
  .sp-fields .search-go,
  .mc-go{ width:calc(100% - 32px); margin:14px 16px 0; align-self:stretch; }
  .vzp-go{ width:100%; margin-left:0; }
  .spanel[data-panel="umrah"] .sp-top-wrap{ gap:14px 20px; padding:14px 16px 10px; }
  .spanel[data-panel="umrah"] .seg-cap{ white-space:normal; }
  .search-tags{ padding:12px 16px; }
}

/* ── Tours & Hotels: the field row fills the panel, so the boxes sit
      dead-centre vertically and their divider outlines run the full
      height of the card, exactly like Flights / Umrah ── */
.spanel[data-panel="tours"].on > .sp-fields,
.spanel[data-panel="hotels"].on > .sp-fields{
  flex:1 1 auto; margin-top:0; min-height:0;
}
.spanel[data-panel="tours"] .sp-fields .sf,
.spanel[data-panel="hotels"] .sp-fields .sf{
  justify-content:center;
  border-right:1px solid rgba(140,170,210,.28) !important;
}
.spanel[data-panel="tours"] .sp-fields .sf:last-of-type,
.spanel[data-panel="hotels"] .sp-fields .sf:last-of-type{
  border-right:1px solid rgba(140,170,210,.28) !important;
}
@media (max-width:860px){
  .spanel[data-panel="tours"] .sp-fields .sf,
  .spanel[data-panel="hotels"] .sp-fields .sf{
    border-right:none !important;
    border-bottom:1px solid rgba(140,170,210,.24);
  }
}

/* ── Tours & Hotels v3: each field is its own outlined box —
      border on ALL four sides (top+bottom like left+right),
      standard height, centred in the panel. No more full-height
      blank columns. ── */
.spanel[data-panel="tours"].on > .sp-fields,
.spanel[data-panel="hotels"].on > .sp-fields{
  flex:1 1 auto; margin-top:0; min-height:0;
  align-items:center;
  gap:14px; padding:0 24px;
}
.spanel[data-panel="tours"] .sp-fields .sf,
.spanel[data-panel="hotels"] .sp-fields .sf{
  height:64px; min-height:64px; flex:1 1 0;
  justify-content:center; padding:0 18px;
  border:1px solid rgba(140,170,210,.34) !important;
  border-radius:16px;
  background:rgba(255,255,255,.55);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
  transition:border-color .18s, background .18s, box-shadow .18s;
}
.spanel[data-panel="tours"] .sp-fields .sf:last-of-type,
.spanel[data-panel="hotels"] .sp-fields .sf:last-of-type{
  border:1px solid rgba(140,170,210,.34) !important;
}
.spanel[data-panel="tours"] .sp-fields .sf:hover,
.spanel[data-panel="hotels"] .sp-fields .sf:hover,
.spanel[data-panel="tours"] .sp-fields .sf:focus-within,
.spanel[data-panel="hotels"] .sp-fields .sf:focus-within{
  border-color:var(--azure) !important;
  background:rgba(255,255,255,.85);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 0 0 4px rgba(0,102,255,.10);
}
.spanel[data-panel="tours"] .sp-fields .search-go,
.spanel[data-panel="hotels"] .sp-fields .search-go{ margin-left:4px; }

@media (max-width:860px){
  .spanel[data-panel="tours"].on > .sp-fields,
  .spanel[data-panel="hotels"].on > .sp-fields{ padding:14px 16px 0; gap:10px; }
  .spanel[data-panel="tours"] .sp-fields .sf,
  .spanel[data-panel="hotels"] .sp-fields .sf{
    width:100%; border-bottom:1px solid rgba(140,170,210,.34) !important;
  }
}

/* ── Daily Group Air Fare button: blue → RED gradient ── */
.gfx-btn, .sp-capsule .gfx-btn, #gfxBtn{
  background:linear-gradient(135deg,#FF3B30,#C1121F) !important;
  color:#fff !important;
  border:none !important;
  box-shadow:0 10px 26px rgba(224,32,32,.35), inset 0 1px 0 rgba(255,255,255,.22) !important;
}
.gfx-btn:hover, #gfxBtn:hover{
  filter:brightness(1.08);
  box-shadow:0 14px 32px rgba(224,32,32,.45), inset 0 1px 0 rgba(255,255,255,.22) !important;
}
/* keep the HOT badge readable on red */
.gfx-btn .gfx-hot{
  background:#fff !important; color:#C1121F !important;
}

/* ── Below-fold sections skip their render work until the visitor
      approaches them (pure paint-time win, no visual change) ── */
#destinations, #tours, .visa-ai-section, #configurator, #why,
.testi-section, .films-section, footer#contact{
  content-visibility:auto;
  contain-intrinsic-size:auto 720px;
}

/* ── Group Fare button: exact same height as the blue segment pill
      to its left (Round-trip) — same padding, font size and radius;
      the HOT badge can no longer stretch it ── */
.sp-capsule .gfx-btn, #gfxBtn{
  padding:8px 17px !important;
  font-size:13px !important; font-weight:700 !important;
  line-height:1.2 !important; border-radius:100px !important;
  display:inline-flex; align-items:center; gap:8px;
}
.gfx-btn .gfx-hot{
  font-size:9px !important; line-height:1 !important;
  padding:3px 6px !important; margin:0 !important;
  align-self:center;
}

/* ═══ TRANSPORT + ESIM TABS ═══ */

/* date + time paired inside one field */
.sf-dt{ display:flex; align-items:center; gap:10px; }
.sf-dt input[type="date"]{ flex:1 1 auto; min-width:0; }
.sf-dt select.tr-time{
  border:none; background:transparent; padding:0 16px 0 10px;
  font-family:'Cabinet Grotesk',sans-serif; font-size:14px; font-weight:700;
  color:var(--ink); outline:none; cursor:pointer; appearance:none;
  border-left:1px solid rgba(140,170,210,.30);
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%238795a6' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right center;
}

/* license + age row under the rental fields */
.tr-meta{
  display:flex; align-items:center; gap:30px; flex-wrap:wrap;
  padding:11px 24px 13px;
  border-top:1px solid rgba(140,170,210,.20);
  font-size:13px; font-weight:600; color:rgba(10,21,38,.62);
}
.tr-meta label{ display:inline-flex; align-items:center; gap:9px; }
.tr-meta select{
  border:none; background:transparent; padding:0 16px 0 0;
  font-family:'Cabinet Grotesk',sans-serif; font-size:13.5px; font-weight:800;
  color:var(--ink); outline:none; cursor:pointer; appearance:none;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%238795a6' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right center;
}

/* transport & esim panels: text inputs match the house style */
.spanel[data-panel="transport"] .sf input[type="text"],
.spanel[data-panel="esim"] .sf input[type="text"]{
  border:none; background:transparent; width:100%; padding:0; outline:none;
  font-family:'Cabinet Grotesk',sans-serif; font-size:15px; font-weight:600; color:var(--ink);
}

/* 7 tabs: allow the bar to scroll sideways on small screens */
@media (max-width:920px){
  .search-tabs{ overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; }
  .search-tabs::-webkit-scrollbar{ display:none; }
  .search-tabs .stab{ flex:0 0 auto; }
}
@media (max-width:860px){
  .tr-meta{ gap:14px; padding:10px 16px 12px; }
  .sf-dt{ flex-wrap:wrap; }
}

/* ── emoji → SVG swaps keep their old footprint ── */
.logo-mark svg{ width:58%; height:58%; }
.logo-mark{ display:inline-flex; align-items:center; justify-content:center; }
.ac-ico svg{ width:15px; height:15px; vertical-align:-2px; opacity:.75; }
.vz-ic svg{ width:56%; height:56%; }
.vz-ic{ display:inline-flex; align-items:center; justify-content:center; }
.wa-fab svg{ width:26px; height:26px; }

/* ── unified outlined icon system (replaces all emojis) ── */
svg.ti{ width:15px; height:15px; vertical-align:-2.5px; flex:0 0 auto; }
.tf-btn svg.ti, .cs-opt svg.ti{ margin-right:6px; }
.tf-btn, .cs-opt{ display:inline-flex; align-items:center; }
.vai-feat-ico svg.ti, .wc-icon svg.ti{ width:55%; height:55%; margin:0; }
.vai-feat-ico, .wc-icon{ display:inline-flex; align-items:center; justify-content:center; }
.tb-dest-ic svg.ti{ width:16px; height:16px; opacity:.6; }
.chat-send svg.ti{ width:17px; height:17px; }
.pp-title svg.ti, .pp-line-label svg.ti{ width:14px; height:14px; margin-right:5px; opacity:.85; }
.pp-line-label{ display:inline-flex; align-items:center; }
.btn-config svg.ti{ margin-right:7px; }
footer .f-col a svg.ti, footer a svg.ti{ width:14px; height:14px; margin-right:7px; opacity:.8; }
#quoteSummary svg.ti{ width:14px; height:14px; margin-right:4px; }

/* ═══ ALL PACKAGES PAGE + HOMEPAGE SEE-ALL ═══ */

/* homepage: See All button under the six popular cards */
.see-all-wrap{ text-align:center; margin-top:38px; }
.see-all-btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 34px; border-radius:100px; text-decoration:none;
  background:linear-gradient(135deg,#0066FF,#0B49B8); color:#fff;
  font-family:'Cabinet Grotesk',sans-serif; font-size:15px; font-weight:800;
  box-shadow:0 10px 26px rgba(0,102,255,.32), inset 0 1px 0 rgba(255,255,255,.22);
  transition:transform .2s, box-shadow .2s, filter .2s;
}
.see-all-btn:hover{ filter:brightness(1.08); transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,102,255,.40), inset 0 1px 0 rgba(255,255,255,.22); }
.see-all-btn svg{ width:17px; height:17px; transition:transform .2s; }
.see-all-btn:hover svg{ transform:translateX(3px); }

/* all-packages page */
.pkgall-wrap{ max-width:1400px; padding-top:120px; }
.pkgall-head{ text-align:center; margin-bottom:30px; }
.pkgall-head h1{
  font-family:'Fraunces',serif; font-size:clamp(34px,4.6vw,54px); font-weight:700;
  color:var(--ink); margin:6px 0 0;
}
.pkgall-head h1 span{ color:var(--azure); font-style:italic; }
.pkgall-head p{ color:var(--ink-50); font-size:15.5px; max-width:620px; margin:14px auto 0; line-height:1.6; }

.pkgall-search{ position:sticky; top:86px; z-index:60; margin-bottom:34px; }

.pkgall-sec{ margin:0 0 54px; }
.pkgall-sec-head{
  display:flex; align-items:center; gap:16px;
  padding:0 4px 14px; margin-bottom:22px;
  border-bottom:2.5px solid var(--cp,#0066FF);
}
.pkgall-flag{ font-size:34px; line-height:1; filter:drop-shadow(0 3px 8px rgba(8,16,28,.18)); display:inline-flex; color:var(--cp); }
.pkgall-sec-titles h2{
  font-family:'Fraunces',serif; font-size:clamp(23px,2.6vw,32px); font-weight:700;
  color:var(--ink); margin:0; line-height:1.1;
}
.pkgall-sec-titles h2 small{
  font-family:'Cabinet Grotesk',sans-serif; font-size:14px; font-weight:700;
  color:var(--ink-50); margin-left:10px;
}
.pkgall-sec-sub{ font-size:13px; font-weight:700; color:var(--ink-50); margin-top:4px; }
.pkgall-sec-sub a{ color:var(--cp,#0066FF); text-decoration:none; font-weight:800; }
.pkgall-sec-sub a:hover{ text-decoration:underline; }

.pkgall-grid{ grid-template-columns:repeat(3,1fr); }
@media (max-width:1080px){ .pkgall-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:680px){ .pkgall-grid{ grid-template-columns:1fr; } }

.pkgall-footer{ border-top:1px solid var(--border); background:#fff; }
.pkgall-footer-in{
  max-width:1400px; margin:0 auto; padding:22px 20px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:13.5px; font-weight:600; color:var(--ink-50);
}
.pkgall-footer a{ color:var(--azure); text-decoration:none; font-weight:700; }

@media (max-width:640px){
  .pkgall-wrap{ padding-top:104px; }
  .pkgall-search{ top:70px; }
  .pkgall-sec-head{ gap:12px; }
}

/* ── ALL PACKAGES v2: static search bar + compact cards ── */

/* header menu stays sticky (same dark glass bar as the country pages);
   the search bar scrolls away with the page like on the country page */
.pkgall-search{ position:static; top:auto; }

/* compact cards — a country heading plus six cards fit one screen */
.pkgall-sec{ margin-bottom:40px; }
.pkgall-sec-head{ padding-bottom:10px; margin-bottom:16px; }
.pkgall-flag{ font-size:28px; }
.pkgall-sec-titles h2{ font-size:clamp(20px,2.1vw,26px); }
.pkgall-grid{ gap:16px; }
.pkgall-grid .tc-img{ height:148px; }
.pkgall-grid .tc-dur{ font-size:11px; padding:4px 10px; }
.pkgall-grid .tc-badges .tc-b{ font-size:10px; padding:3px 9px; }
.pkgall-grid .tc-wish{ width:30px; height:30px; font-size:14px; }
.pkgall-grid .tc-body{ padding:14px 16px 15px; }
.pkgall-grid .tc-loc{ font-size:11px; margin-bottom:5px; }
.pkgall-grid .tc-title{ font-size:16.5px; line-height:1.22; margin-bottom:5px; }
.pkgall-grid .tc-rating{ font-size:11.5px; margin-bottom:6px; }
.pkgall-grid .tc-highlights{ display:none; }         /* details live one click away */
.pkgall-grid .tc-foot{ margin-top:8px; padding-top:9px; }
.pkgall-grid .tc-pr-lbl{ font-size:10px; }
.pkgall-grid .tc-pr{ font-size:18px; }
.pkgall-grid .tc-pr-old{ font-size:11.5px; }
.pkgall-grid .btn-book{ padding:9px 16px; font-size:12.5px; }
.pkgall-grid .tc:hover{ transform:translateY(-5px); }

@media (max-width:680px){
  .pkgall-grid .tc-img{ height:170px; }
}

/* ── ALL PACKAGES: page background gradient (matches the site's
      navy-to-azure vibe — deep tone up top under the glass nav,
      settling into airy ice-blue and white for the cards) ── */
body.pkgall-body{
  background:
    radial-gradient(1000px 520px at 88% -6%, rgba(0,102,255,.14), transparent 62%),
    radial-gradient(760px 460px at -8% 10%, rgba(11,73,184,.10), transparent 60%),
    linear-gradient(180deg, #0E1B33 0%, #23406E 7%, #DEE9F8 15%, #F3F8FF 40%, #FFFFFF 100%);
  background-attachment:fixed;
}
body.pkgall-body .pkgall-head .cp-eyebrow{ color:var(--azure); }
body.pkgall-body .pkgall-footer{ background:rgba(255,255,255,.72);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); }
@media (max-width:680px){
  body.pkgall-body{
    background:
      radial-gradient(560px 320px at 90% -4%, rgba(0,102,255,.13), transparent 62%),
      linear-gradient(180deg, #0E1B33 0%, #23406E 6%, #E3EDFA 14%, #F5F9FF 42%, #FFFFFF 100%);
    background-attachment:scroll;   /* fixed attachment janks on mobile */
  }
}

/* ── ALL PACKAGES v3: full modern theme pass ──
      The top of the page becomes a mini-hero in the homepage's own
      navy — white serif headline, frosted search bar floating on it,
      faint grid lines and slow-drifting azure auroras — then the
      canvas settles to airy white for the cards. */

/* deeper navy crown, softer landing */
body.pkgall-body{
  background:
    radial-gradient(1100px 560px at 86% -8%, rgba(0,102,255,.20), transparent 60%),
    radial-gradient(800px 480px at -6% 4%, rgba(255,122,89,.07), transparent 55%),
    linear-gradient(180deg, #0A1426 0%, #10233F 16%, #1A3358 26%, #E8F0FB 40%, #F5F9FF 58%, #FFFFFF 100%);
  background-attachment:fixed;
}

/* the hero's signature grid lines, fading out where the light area begins */
body.pkgall-body::before{
  content:''; position:fixed; inset:0; pointer-events:none; z-index:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 240px,transparent 520px);
  mask-image:linear-gradient(180deg,#000 0%,#000 240px,transparent 520px);
}

/* two slow auroras drifting behind everything */
body.pkgall-body::after{
  content:''; position:fixed; inset:-20% -10%; pointer-events:none; z-index:0;
  background:
    radial-gradient(560px 340px at 22% 14%, rgba(0,102,255,.13), transparent 70%),
    radial-gradient(480px 300px at 78% 8%, rgba(47,199,206,.10), transparent 70%);
  animation:pkgAurora 26s ease-in-out infinite alternate;
}
@keyframes pkgAurora{
  from{ transform:translate3d(0,0,0); }
  to{ transform:translate3d(4%,3%,0); }
}
@media (prefers-reduced-motion:reduce){ body.pkgall-body::after{ animation:none; } }

body.pkgall-body .pkgall-wrap{ position:relative; z-index:1; }

/* mini-hero headline on the navy */
body.pkgall-body .pkgall-head{ margin-bottom:26px; }
body.pkgall-body .pkgall-head .cp-eyebrow{
  color:#8FB9FF; letter-spacing:.22em;
}
body.pkgall-body .pkgall-head h1{
  color:#fff; text-shadow:0 6px 30px rgba(3,10,24,.45);
}
body.pkgall-body .pkgall-head h1 span{
  background:linear-gradient(90deg,#6EA8FF,#2FC7CE);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-style:italic; text-shadow:none;
}
body.pkgall-body .pkgall-head p{ color:rgba(233,241,252,.78); }

/* frosted search bar floating on the navy, homepage-search-card style */
body.pkgall-body .pkgall-search{
  background:rgba(255,255,255,.94);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  backdrop-filter:blur(18px) saturate(150%);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 22px 55px rgba(3,10,24,.35), 0 0 0 1px rgba(0,102,255,.06);
  margin-bottom:46px;
}
body.pkgall-body .pkgall-search:focus-within{
  border-color:rgba(0,102,255,.55);
  box-shadow:0 22px 55px rgba(3,10,24,.35), 0 0 0 4px rgba(0,102,255,.16);
}

/* country section heads: glass count chip + gradient hairline */
.pkgall-sec-head{ border-bottom:none; position:relative; padding-bottom:14px; }
.pkgall-sec-head::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2.5px;
  border-radius:100px;
  background:linear-gradient(90deg, var(--cp,#0066FF), color-mix(in srgb, var(--cp,#0066FF) 20%, transparent) 70%, transparent);
}
.pkgall-sec-sub{
  display:inline-flex; align-items:center; gap:8px;
  margin-top:6px; padding:4px 12px; border-radius:100px;
  background:color-mix(in srgb, var(--cp,#0066FF) 9%, #fff);
  border:1px solid color-mix(in srgb, var(--cp,#0066FF) 22%, transparent);
  color:color-mix(in srgb, var(--cp,#0066FF) 78%, #08131F);
}
.pkgall-sec-sub a{ color:inherit; }

/* cards: lift with an azure glow on hover */
.pkgall-grid .tc{ transition:transform .28s, box-shadow .28s, border-color .28s; }
.pkgall-grid .tc:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 44px rgba(8,20,40,.14), 0 0 0 1.5px rgba(0,102,255,.22);
}

@media (max-width:680px){
  body.pkgall-body{
    background:
      radial-gradient(560px 320px at 90% -4%, rgba(0,102,255,.18), transparent 60%),
      linear-gradient(180deg, #0A1426 0%, #142A4C 14%, #E9F1FC 32%, #F6FAFF 55%, #FFFFFF 100%);
    background-attachment:scroll;
  }
  body.pkgall-body::before, body.pkgall-body::after{ display:none; }  /* keep phones fast */
}

/* ── ALL PACKAGES v4: SILK-SMOOTH SCROLLING ──
      The choppiness came from background-attachment:fixed (forces the
      browser to repaint the whole gradient on every scrolled pixel) and
      the animated aurora layer. The gradient now lives on its own fixed,
      GPU-composited layer that never repaints; the aurora animation is
      retired; offscreen country sections skip render work entirely. */

/* body itself: plain paint, nothing to recompute while scrolling */
body.pkgall-body{
  background:#FDFEFF !important;
  background-attachment:scroll !important;
}

/* the whole scene on one fixed GPU layer (zero repaint on scroll) */
body.pkgall-body::before{
  content:''; position:fixed; inset:0; z-index:-2; pointer-events:none;
  background:
    radial-gradient(1100px 560px at 86% -8%, rgba(0,102,255,.20), transparent 60%),
    radial-gradient(800px 480px at -6% 4%, rgba(255,122,89,.07), transparent 55%),
    radial-gradient(560px 340px at 22% 14%, rgba(0,102,255,.10), transparent 70%),
    linear-gradient(180deg, #0A1426 0%, #10233F 16%, #1A3358 26%, #E8F0FB 40%, #F5F9FF 58%, #FFFFFF 100%);
  transform:translateZ(0); will-change:transform;
  -webkit-mask-image:none; mask-image:none;
  background-size:100% 100vh; background-repeat:no-repeat;
  animation:none;
}

/* grid lines on their own composited layer, fading out down the page */
body.pkgall-body::after{
  content:''; position:fixed; inset:0; z-index:-1; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 240px,transparent 520px);
  mask-image:linear-gradient(180deg,#000 0%,#000 240px,transparent 520px);
  transform:translateZ(0); will-change:transform;
  animation:none;
}

/* offscreen countries cost nothing until you reach them
   (with 200+ cards this is the single biggest scroll win) */
.pkgall-sec{
  content-visibility:auto;
  contain-intrinsic-size:auto 860px;
}

/* cursor rides its own GPU layer everywhere */
#cursor, #cursor-ring{ will-change:transform; }

/* card hover: cheap composited properties only */
.pkgall-grid .tc{ transition:transform .25s ease, box-shadow .25s ease; }

@media (max-width:680px){
  body.pkgall-body::before{
    background:
      radial-gradient(560px 320px at 90% -4%, rgba(0,102,255,.18), transparent 60%),
      linear-gradient(180deg, #0A1426 0%, #142A4C 14%, #E9F1FC 32%, #F6FAFF 55%, #FFFFFF 100%);
    background-size:100% 100vh;
    display:block;             /* phones now get the fixed layer too — it's cheap */
  }
  body.pkgall-body::after{ display:none; }
}

/* ── ALL PACKAGES v5: destinations-page hero design ──
      Flat deep-navy hero band with the faint grid, white serif title,
      clean hard edge into a white page — exactly like the destinations
      page — plus the right-side red scroll handle. */

/* retire the gradient scene from v3/v4 */
body.pkgall-body{ background:#fff !important; }
body.pkgall-body::before, body.pkgall-body::after{ display:none !important; content:none !important; }

/* hero band */
.pkgall-hero{
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg,#0D1830 0%,#0F1D3A 60%,#0C1526 100%);
  background-size:64px 64px, 64px 64px, 100% 100%;
  text-align:center; color:#fff;
  padding:150px 24px 74px;
}
.pkgall-hero h1{
  font-family:'Fraunces',serif; font-weight:800;
  font-size:clamp(38px,5.6vw,68px); line-height:1.05; margin:0;
}
.pkgall-hero p{
  max-width:640px; margin:18px auto 0;
  font-size:16.5px; line-height:1.65; color:rgba(233,241,252,.82); font-weight:400;
}

/* page body sits on white now */
.pkgall-wrap{ padding-top:34px; }

/* back link, destinations-page style */
.pkgall-back{
  display:inline-block; margin:0 0 18px;
  color:var(--azure); font-weight:800; font-size:15px; text-decoration:none;
}
.pkgall-back:hover{ text-decoration:underline; }

/* search bar back to the plain destinations-page style */
body.pkgall-body .pkgall-search{
  background:#fff;
  -webkit-backdrop-filter:none; backdrop-filter:none;
  border:1.5px solid var(--border);
  box-shadow:0 6px 22px rgba(8,16,28,.06);
  margin-bottom:26px;
}
body.pkgall-body .pkgall-search:focus-within{
  border-color:var(--azure);
  box-shadow:0 0 0 4px rgba(0,102,255,.10), 0 6px 22px rgba(8,16,28,.06);
}

/* headline back to dark ink rules don't apply — hero owns the title now */
@media (max-width:640px){
  .pkgall-hero{ padding:120px 18px 54px; }
  .pkgall-wrap{ padding-top:24px; }
}

/* ── homepage popular grid: before the filter JS runs, only the first
      six cards show (extras exist for the category filters) ── */
#tours-grid .tc:nth-child(n+7){ display:none; }

/* ═══ BUBBLE HEADER — floating glass capsule, direction-aware collapse ═══
      City Bank-style detached pill, in Ractrip's own glassmorphism.
      .nav-mini = compact state (scrolling down); removed on scroll up. */

#nav{
  top:14px; left:50%; right:auto; transform:translateX(-50%);
  width:min(1560px, calc(100% - 36px));
  padding:0 28px;
  border-radius:100px;
  background:rgba(12,22,40,.55);
  -webkit-backdrop-filter:blur(22px) saturate(160%);
  backdrop-filter:blur(22px) saturate(160%);
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 12px 40px rgba(3,8,18,.35), inset 0 1px 0 rgba(255,255,255,.10);
  overflow:visible;
  transition:top .38s cubic-bezier(.25,.46,.45,.94),
             padding .38s cubic-bezier(.25,.46,.45,.94),
             background .38s, box-shadow .38s, border-color .38s;
}
#nav.solid, nav.nav-solid#nav{
  border-radius:100px; border-bottom:none;
  background:rgba(10,19,35,.72);
  border:1px solid rgba(255,255,255,.13);
  box-shadow:0 14px 44px rgba(3,8,18,.42), inset 0 1px 0 rgba(255,255,255,.10);
}
.nav-wrap{ height:68px; transition:height .38s cubic-bezier(.25,.46,.45,.94); }
.logo-img, .logo-mark{ transition:transform .38s cubic-bezier(.25,.46,.45,.94); transform-origin:left center; }

/* ── compact state ── */
#nav.nav-mini{
  top:10px;
  padding:0 22px;
  background:rgba(9,17,32,.80);
  box-shadow:0 10px 34px rgba(3,8,18,.48), inset 0 1px 0 rgba(255,255,255,.08);
}
#nav.nav-mini .nav-wrap{ height:52px; }
#nav.nav-mini .logo-img, #nav.nav-mini .logo-mark{ transform:scale(.82); }
#nav.nav-mini .btn-nav{ padding-top:8px; padding-bottom:8px; }

/* subpage mobile dropdown must escape the pill cleanly */
#nav .nav-menu.open{ border-radius:22px; }

@media (max-width:920px){
  #nav{ top:10px; width:calc(100% - 20px); padding:0 18px; }
  .nav-wrap{ height:60px; }
  #nav.nav-mini{ top:8px; }
  #nav.nav-mini .nav-wrap{ height:50px; }
}

/* ═══ BUBBLE HEADER v2 — Dynamic Island compact state ═══
      Scrolling down no longer just flattens the bar: it contracts
      into a small centred glass island (logo + Book Now), exactly
      the City Bank behaviour. Scroll up or hover to expand. */

#nav{
  width:calc(100% - 36px);
  max-width:1560px;
  transition:top .42s cubic-bezier(.3,.7,.3,1),
             max-width .42s cubic-bezier(.3,.7,.3,1),
             padding .42s cubic-bezier(.3,.7,.3,1),
             background .38s, box-shadow .38s, border-color .38s;
}
.nav-wrap{ min-width:0; }

/* island state: shrink the capsule to its essentials */
#nav.nav-mini{
  max-width:330px;
  padding:0 12px 0 16px;
}
#nav.nav-mini .nav-wrap{ height:54px; gap:14px; justify-content:space-between; }
#nav.nav-mini .nav-menu,
#nav.nav-mini .btn-nav-ghost{ display:none; }
#nav.nav-mini .logo{ font-size:20px; }
#nav.nav-mini .logo-img, #nav.nav-mini .logo-mark{ transform:scale(.78); }
#nav.nav-mini .btn-nav-fill{ padding:9px 18px; font-size:13px; white-space:nowrap; }
#nav.nav-mini .nav-actions{ gap:0; }

/* subpages keep their burger inside the island */
#nav.nav-mini .nav-toggle{ display:block; }

@media (max-width:920px){
  #nav{ width:calc(100% - 20px); }
  #nav.nav-mini{ max-width:290px; padding:0 10px 0 14px; }
  #nav.nav-mini .nav-wrap{ height:50px; }
}

/* ═══ ISLAND HEADER v3 — pure width morph ═══
      Height never changes; only the capsule's width breathes.
      Collapsed contents: logo · RacAi · Book Now. Nothing else. */

/* reset v2's vertical changes — the bar keeps one constant height */
#nav.nav-mini{ top:14px; }
#nav.nav-mini .nav-wrap{ height:68px; gap:16px; }
#nav.nav-mini .logo{ font-size:26px; }
#nav.nav-mini .logo-img, #nav.nav-mini .logo-mark{ transform:none; }
#nav.nav-mini .btn-nav-fill{ padding:11px 22px; font-size:14px; }

/* width-only motion, one springy curve */
#nav{
  transition:max-width .5s cubic-bezier(.3,.75,.25,1),
             padding .5s cubic-bezier(.3,.75,.25,1),
             background .38s, box-shadow .38s, border-color .38s;
}
#nav.nav-mini{ max-width:400px; padding:0 14px 0 20px; }

/* collapsed: logo + RacAi + Book Now only */
#nav.nav-mini .nav-toggle{ display:none; }
.nav-racai{ display:none; }
#nav.nav-mini .nav-racai{
  display:inline-flex; align-items:center;
  padding:10px 18px; border-radius:100px;
  border:1.5px solid rgba(255,255,255,.30); color:#fff;
  font-weight:800; font-size:13.5px; text-decoration:none;
  transition:background .18s, border-color .18s;
}
#nav.nav-mini .nav-racai:hover{
  background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.55);
}
#nav.nav-mini .nav-actions{ gap:10px; }

@media (max-width:920px){
  #nav.nav-mini{ top:10px; max-width:352px; padding:0 10px 0 16px; }
  #nav.nav-mini .nav-wrap{ height:60px; }
  #nav.nav-mini .btn-nav-fill{ padding:9px 16px; font-size:13px; }
  #nav.nav-mini .nav-racai{ padding:8px 14px; font-size:12.5px; }
}

/* ═══════════════ RACBOT — the miniature RacAi robot ═══════════════ */
.racbot{
  position:absolute; right:38px; bottom:26px; z-index:6;
  width:92px; height:132px; cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.racbot-body{ position:absolute; inset:0; transform-origin:50% 100%; }
.rb-idle .racbot-body{ animation:rbBob 3.2s ease-in-out infinite; }
@keyframes rbBob{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }

/* head */
.rb-head{
  position:absolute; top:16px; left:50%; transform:translateX(-50%);
  width:62px; height:48px; border-radius:20px;
  background:linear-gradient(135deg,#6FAFFF 0%,#2E7BFF 45%,#0B49B8 100%);
  box-shadow:inset 0 2px 3px rgba(255,255,255,.5), inset 0 -4px 8px rgba(4,16,42,.35), 0 6px 14px rgba(4,16,42,.35);
}
.rb-ear{ position:absolute; top:16px; width:7px; height:16px; border-radius:4px;
  background:linear-gradient(180deg,#2E7BFF,#0B49B8); box-shadow:inset 0 1px 2px rgba(255,255,255,.4); }
.rb-ear-l{ left:-6px; } .rb-ear-r{ right:-6px; }
.rb-face{
  position:absolute; inset:8px 9px; border-radius:14px;
  background:linear-gradient(180deg,#08142B,#0B1D3E);
  box-shadow:inset 0 0 10px rgba(0,0,0,.6), inset 0 1px 0 rgba(120,180,255,.25);
  overflow:hidden;
}
.rb-eye{
  position:absolute; top:11px; width:9px; height:11px; border-radius:50%;
  background:#5EE1FF; box-shadow:0 0 8px #34C8FF, 0 0 2px #fff;
  animation:rbBlink 4.6s infinite;
  transition:transform .3s;
}
.rb-eye-l{ left:10px; } .rb-eye-r{ right:10px; animation-delay:.06s; }
@keyframes rbBlink{ 0%,92%,100%{transform:scaleY(1)} 95%{transform:scaleY(.08)} }
.rb-mouth{
  position:absolute; bottom:6px; left:50%; transform:translateX(-50%);
  width:14px; height:5px; border-radius:0 0 10px 10px;
  border:2px solid #5EE1FF; border-top:none;
  box-shadow:0 0 6px rgba(52,200,255,.6);
}
/* antenna */
.rb-antenna{
  position:absolute; top:2px; left:50%; transform:translateX(-50%);
  width:3px; height:16px; border-radius:2px; background:linear-gradient(180deg,#2E7BFF,#0B49B8);
}
.rb-ant-tip{
  position:absolute; top:-6px; left:50%; transform:translateX(-50%);
  width:8px; height:8px; border-radius:50%;
  background:#5EE1FF; box-shadow:0 0 10px #34C8FF;
  animation:rbPing 2.4s ease-in-out infinite;
}
@keyframes rbPing{ 0%,100%{opacity:1} 50%{opacity:.45} }

/* torso */
.rb-torso{
  position:absolute; top:64px; left:50%; transform:translateX(-50%);
  width:48px; height:38px; border-radius:16px;
  background:linear-gradient(135deg,#4D94FF 0%,#1E63E0 55%,#0B49B8 100%);
  box-shadow:inset 0 2px 3px rgba(255,255,255,.45), inset 0 -4px 8px rgba(4,16,42,.35), 0 6px 12px rgba(4,16,42,.3);
}
.rb-chest{
  position:absolute; top:9px; left:50%; transform:translateX(-50%);
  width:16px; height:16px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, #7FF0FF, #17A8E8 70%);
  box-shadow:0 0 10px rgba(52,200,255,.7), inset 0 -2px 3px rgba(4,30,60,.5);
  animation:rbPing 3s ease-in-out infinite;
}
/* arms */
.rb-arm{
  position:absolute; top:66px; width:10px; height:26px; border-radius:8px;
  background:linear-gradient(180deg,#3E86F5,#0B49B8);
  box-shadow:inset 0 1px 2px rgba(255,255,255,.4);
  transform-origin:50% 12%;
}
.rb-arm-l{ left:12px; transform:rotate(8deg); }
.rb-arm-r{ right:12px; transform:rotate(-8deg); }
/* legs */
.rb-leg{
  position:absolute; top:99px; width:12px; height:22px; border-radius:7px 7px 9px 9px;
  background:linear-gradient(180deg,#2E7BFF,#093C97);
  box-shadow:inset 0 1px 2px rgba(255,255,255,.35);
  transform-origin:50% 8%;
}
.rb-leg-l{ left:29px; } .rb-leg-r{ right:29px; }
/* shadow */
.rb-shadow{
  position:absolute; bottom:-2px; left:50%; transform:translateX(-50%);
  width:64px; height:10px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(3,10,24,.45), transparent 70%);
}
.rb-idle .rb-shadow{ animation:rbShadow 3.2s ease-in-out infinite; }
@keyframes rbShadow{ 0%,100%{transform:translateX(-50%) scaleX(1)} 50%{transform:translateX(-50%) scaleX(.88)} }

/* ── entrance: walks in from behind (small & far → close & full) ── */
.rb-enter{ animation:rbEnter 2.3s cubic-bezier(.3,.7,.3,1) both; }
@keyframes rbEnter{
  0%{ transform:translate(120px,-14px) scale(.4); opacity:0; filter:blur(2px); }
  25%{ opacity:1; }
  100%{ transform:translate(0,0) scale(1); opacity:1; filter:blur(0); }
}
.rb-walking .rb-leg-l{ animation:rbStepL .45s ease-in-out infinite; }
.rb-walking .rb-leg-r{ animation:rbStepR .45s ease-in-out infinite; }
.rb-walking .rb-arm-l{ animation:rbSwingL .45s ease-in-out infinite; }
.rb-walking .rb-arm-r{ animation:rbSwingR .45s ease-in-out infinite; }
@keyframes rbStepL{ 0%,100%{transform:rotate(20deg)} 50%{transform:rotate(-20deg)} }
@keyframes rbStepR{ 0%,100%{transform:rotate(-20deg)} 50%{transform:rotate(20deg)} }
@keyframes rbSwingL{ 0%,100%{transform:rotate(-16deg)} 50%{transform:rotate(18deg)} }
@keyframes rbSwingR{ 0%,100%{transform:rotate(16deg)} 50%{transform:rotate(-18deg)} }

/* ── wave ── */
.rb-wave .rb-arm-r{ animation:rbWave 1.8s ease-in-out; transform-origin:50% 10%; }
@keyframes rbWave{
  0%{transform:rotate(-8deg)} 15%{transform:rotate(-150deg)}
  30%{transform:rotate(-115deg)} 45%{transform:rotate(-155deg)}
  60%{transform:rotate(-115deg)} 75%{transform:rotate(-150deg)}
  100%{transform:rotate(-8deg)}
}
.rb-wave .rb-eye{ transform:scaleY(.55) translateY(1px); }  /* happy squint */

/* ── emotes ── */
.rb-look .rb-eye-l{ transform:translateX(3px); } .rb-look .rb-eye-r{ transform:translateX(3px); }
.rb-hop .racbot-body{ animation:rbHop .6s cubic-bezier(.3,.7,.3,1) 2; }
@keyframes rbHop{ 0%,100%{transform:translateY(0)} 40%{transform:translateY(-12px)} }
.rb-tilt .racbot-body{ animation:rbTilt 1.2s ease-in-out; }
@keyframes rbTilt{ 0%,100%{transform:rotate(0)} 30%{transform:rotate(-7deg)} 70%{transform:rotate(6deg)} }
/* hover hop turned off per owner request */
.racbot:hover .rb-eye{ background:#8FF7FF; }

/* ── speech bubble ── */
.racbot-bubble{
  position:absolute; bottom:118px; right:8px;
  min-width:200px; padding:11px 15px; border-radius:16px 16px 4px 16px;
  background:rgba(255,255,255,.96);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  color:#0A1526; font-size:13px; font-weight:600; line-height:1.45;
  box-shadow:0 10px 30px rgba(4,12,28,.35);
  opacity:0; transform:translateY(8px) scale(.7); transform-origin:100% 100%;
  transition:opacity .35s, transform .45s cubic-bezier(.3,.9,.3,1.25);
  pointer-events:none;
}
.racbot-bubble b{ color:#0066FF; }
.racbot-bubble.show{ opacity:1; transform:translateY(0) scale(1); }
.racbot-bubble::after{
  content:''; position:absolute; bottom:-7px; right:14px;
  border:8px solid transparent; border-top-color:rgba(255,255,255,.96); border-bottom:none;
}

/* ── background cameo in the RacAi section ── */
.racbot-bg{
  right:3%; bottom:-8px; transform:scale(2.7); transform-origin:100% 100%;
  opacity:.13; pointer-events:none; cursor:default; z-index:0;
  filter:saturate(1.2);
}
.vai-inner{ position:relative; z-index:1; }

@media (max-width:920px){
  .racbot{ right:14px; bottom:14px; transform:scale(.78); transform-origin:100% 100%; }
  .racbot-bubble{ min-width:172px; font-size:12px; }
  .racbot-bg{ transform:scale(1.8); opacity:.10; right:-6%; }
}
@media (prefers-reduced-motion:reduce){
  .racbot *, .racbot-body{ animation:none !important; }
}

/* ═══ RACAI SECTION REDESIGN — compact + modern blue gradient ═══ */
.visa-ai-section{
  background:
    radial-gradient(900px 480px at 88% 0%, rgba(30,120,255,.28), transparent 60%),
    radial-gradient(700px 420px at 0% 100%, rgba(20,200,255,.14), transparent 60%),
    linear-gradient(140deg,#040D22 0%,#082254 42%,#0B3E9E 88%,#1157D6 120%);
  padding:72px 48px;
}
.vai-glow1{ background:radial-gradient(circle, rgba(40,140,255,.30), transparent 65%) !important; }
.vai-glow2{ background:radial-gradient(circle, rgba(60,210,255,.20), transparent 65%) !important; }
.vai-inner{ gap:48px; }

/* left column — smaller text portions */
.vai-h2{ font-size:clamp(28px,3.2vw,42px); letter-spacing:-1px; margin-bottom:12px; }
.vai-h2 em{
  background:linear-gradient(90deg,#6EA8FF,#38D2FF);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.vai-p{ font-size:14px; line-height:1.7; margin-bottom:24px; max-width:470px; color:rgba(220,235,255,.62); }
.vai-features{ gap:12px; }
.vai-feat{ padding:11px 13px; border-radius:14px; gap:12px;
  background:rgba(255,255,255,.045); border:1px solid rgba(140,190,255,.14); }
.vai-feat-ico{ width:38px; height:38px; min-width:38px; font-size:17px; border-radius:11px; }
.vai-feat-title{ font-size:13.5px; }
.vai-feat-desc{ font-size:12px; line-height:1.5; color:rgba(210,230,255,.55); }
.vai-stats-row{ gap:20px; margin-top:22px; }
.vai-stat-n{ font-size:19px; }
.vai-stat-l{ font-size:10.5px; letter-spacing:.06em; }
.vai-badge{ font-size:11px; padding:7px 14px; }

/* chat panel — smaller, glassier, blue-rimmed */
.vai-chat{
  max-width:400px; justify-self:end; width:100%;
  border-radius:18px;
  background:rgba(10,26,58,.55);
  border:1px solid rgba(120,180,255,.22);
  box-shadow:0 0 0 1px rgba(60,150,255,.12), 0 24px 60px rgba(2,10,30,.55), inset 0 1px 0 rgba(160,210,255,.15);
  min-height:0;
}
.chat-header{ padding:12px 16px; }
.chat-avatar{ width:34px; height:34px; font-size:15px; border-radius:11px;
  background:linear-gradient(135deg,#2E7BFF,#38D2FF); }
.chat-hname{ font-size:14px; }
.chat-hsub{ font-size:10.5px; }
.chat-hstate{ font-size:10.5px; }
.chat-body{ min-height:280px; max-height:320px; padding:16px 15px; gap:12px; font-size:13.5px; }
.chat-footer{ padding:10px 12px; }
.chat-input{ font-size:13px; padding:10px 13px; }
.chat-send{ width:38px; height:38px;
  background:linear-gradient(135deg,#2E7BFF,#0B49B8); }
@media (max-width:1060px){
  .vai-chat{ justify-self:center; max-width:440px; }
  .vai-chat{ min-height:0; }
  .chat-body{ min-height:260px; max-height:300px; }
}

/* ═══════════ RACBOT v2 — 3D upgrade + diorama stage ═══════════ */

/* the bot now lives in a little 3D scene */
.racbot{ perspective:640px; width:104px; height:148px; }
.racbot-body{ transform-style:preserve-3d; }

/* backdrop panel behind him — soft glass vignette with hero grid */
.racbot::before{
  content:''; position:absolute; inset:-26px -22px -6px -22px; z-index:-2;
  border-radius:26px;
  background:
    linear-gradient(rgba(120,180,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,180,255,.06) 1px, transparent 1px),
    radial-gradient(80% 90% at 50% 30%, rgba(30,110,255,.22), rgba(8,20,44,.30) 70%, transparent 100%);
  background-size:22px 22px, 22px 22px, 100% 100%;
  border:1px solid rgba(140,190,255,.14);
  box-shadow:inset 0 0 30px rgba(4,12,30,.5);
  -webkit-mask-image:radial-gradient(85% 85% at 50% 45%, #000 55%, transparent 100%);
  mask-image:radial-gradient(85% 85% at 50% 45%, #000 55%, transparent 100%);
}
/* glossy floor disc he stands on */
.racbot::after{
  content:''; position:absolute; left:50%; bottom:-10px; transform:translateX(-50%);
  width:118px; height:26px; z-index:-1; border-radius:50%;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(90,160,255,.45), rgba(20,60,140,.30) 55%, rgba(8,20,44,.12) 78%, transparent 92%);
  box-shadow:
    inset 0 2px 6px rgba(160,210,255,.35),
    inset 0 -3px 8px rgba(3,10,26,.55),
    0 6px 18px rgba(3,10,26,.45);
}

/* ── 3D idle: bob + gentle turn, like he's shifting his weight ── */
.rb-idle .racbot-body{ animation:rbIdle3d 5.2s ease-in-out infinite; }
@keyframes rbIdle3d{
  0%,100%{ transform:translateY(0) rotateY(-7deg); }
  25%{ transform:translateY(-3px) rotateY(0deg); }
  50%{ transform:translateY(0) rotateY(7deg); }
  75%{ transform:translateY(-3px) rotateY(0deg); }
}

/* ── head: sphere lighting, specular highlight, cyan rim light ── */
.rb-head{
  background:radial-gradient(circle at 30% 22%, #C4DEFF 0%, #6FAFFF 26%, #2E7BFF 55%, #0B49B8 82%, #052B6E 100%);
  box-shadow:
    inset -6px -6px 12px rgba(3,14,40,.55),
    inset 4px 5px 8px rgba(255,255,255,.35),
    inset -2px 0 6px rgba(70,220,255,.25),
    0 8px 18px rgba(3,10,26,.45);
}
.rb-head::before{  /* specular gleam */
  content:''; position:absolute; top:5px; left:10px;
  width:20px; height:9px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(255,255,255,.85), transparent 70%);
  transform:rotate(-18deg);
}
.rb-face{
  box-shadow:
    inset 0 0 12px rgba(0,0,0,.7),
    inset 0 2px 2px rgba(0,0,0,.6),
    inset 0 -1px 0 rgba(120,180,255,.25),
    0 1px 0 rgba(255,255,255,.25);
}
.rb-face::after{  /* glass reflection sweep on the screen */
  content:''; position:absolute; top:-40%; left:-30%;
  width:60%; height:180%; transform:rotate(22deg);
  background:linear-gradient(90deg, transparent, rgba(160,220,255,.12), transparent);
}
.rb-ear{
  background:radial-gradient(circle at 35% 25%, #7FB6FF, #2E7BFF 55%, #0B3D97);
  box-shadow:inset -1px -2px 3px rgba(3,14,40,.6), inset 1px 1px 2px rgba(255,255,255,.5);
}

/* ── torso: barrel shading + seam + belly plate ── */
.rb-torso{
  background:radial-gradient(circle at 32% 20%, #9CC6FF 0%, #4D94FF 30%, #1E63E0 62%, #0B3D97 88%, #062B6E 100%);
  box-shadow:
    inset -6px -6px 12px rgba(3,14,40,.55),
    inset 4px 5px 8px rgba(255,255,255,.35),
    inset -2px 0 6px rgba(70,220,255,.22),
    0 8px 16px rgba(3,10,26,.4);
}
.rb-torso::before{  /* neck shadow — grounds the head on the body */
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:34px; height:7px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(3,12,32,.5), transparent 70%);
}
.rb-torso::after{  /* panel seam */
  content:''; position:absolute; bottom:7px; left:10px; right:10px; height:1px;
  background:linear-gradient(90deg, transparent, rgba(3,14,40,.5), transparent);
}

/* ── limbs: cylindrical shading, ball hands, real feet ── */
.rb-arm{
  background:linear-gradient(90deg, #0B3D97 0%, #4D94FF 30%, #6FAFFF 48%, #2E7BFF 70%, #093272 100%);
  box-shadow:inset 0 2px 2px rgba(255,255,255,.4), inset 0 -2px 3px rgba(3,14,40,.5), 0 3px 6px rgba(3,10,26,.35);
}
.rb-arm::after{  /* hand */
  content:''; position:absolute; bottom:-6px; left:50%; transform:translateX(-50%);
  width:12px; height:12px; border-radius:50%;
  background:radial-gradient(circle at 32% 25%, #A8CFFF, #2E7BFF 60%, #0B3D97);
  box-shadow:inset -1px -2px 3px rgba(3,14,40,.6), 0 2px 4px rgba(3,10,26,.4);
}
.rb-leg{
  background:linear-gradient(90deg, #0B3D97 0%, #3E86F5 32%, #6FAFFF 50%, #2E7BFF 70%, #082D66 100%);
  box-shadow:inset 0 2px 2px rgba(255,255,255,.35), inset 0 -2px 3px rgba(3,14,40,.55);
}
.rb-leg::after{  /* foot */
  content:''; position:absolute; bottom:-7px; left:50%; transform:translateX(-52%);
  width:18px; height:9px; border-radius:8px 10px 6px 6px;
  background:radial-gradient(circle at 30% 20%, #7FB6FF, #1E63E0 55%, #093272);
  box-shadow:inset -1px -2px 2px rgba(3,14,40,.6), 0 3px 5px rgba(3,10,26,.5);
}
.rb-chest{
  box-shadow:0 0 14px rgba(52,200,255,.8), inset 0 -3px 4px rgba(4,30,60,.6), inset 1px 2px 3px rgba(255,255,255,.7);
}
.rb-shadow{ width:76px; filter:blur(1px); }

/* ═══ RacAi-section bot: fully visible 3D character, self-animated ═══ */
.racbot-bg{
  opacity:.9; transform:scale(1.5); transform-origin:100% 100%;
  right:16px; bottom:6px; filter:none;
}
.racbot-bg::before{ opacity:.7; }
.racbot-bg .racbot-body{ animation:rbIdle3d 6s ease-in-out infinite; }
.racbot-bg .rb-arm-r{ animation:rbAutoWave 11s ease-in-out infinite; transform-origin:50% 10%; }
@keyframes rbAutoWave{
  0%,78%,100%{ transform:rotate(-8deg); }
  81%{ transform:rotate(-150deg); } 85%{ transform:rotate(-112deg); }
  89%{ transform:rotate(-152deg); } 93%{ transform:rotate(-112deg); }
  97%{ transform:rotate(-8deg); }
}
.racbot-bg .rb-leg-l{ animation:rbShift 6s ease-in-out infinite; }
@keyframes rbShift{ 0%,100%{transform:rotate(0)} 25%{transform:rotate(5deg)} 75%{transform:rotate(-5deg)} }
@media (max-width:1060px){
  .racbot-bg{ transform:scale(1.05); opacity:.35; right:-10px; }
}

/* ═══ chatbox: wider, same height, input pinned to the bottom ═══ */
.vai-chat{
  max-width:480px;
  height:452px;
  display:flex; flex-direction:column;
}
.chat-body{ flex:1 1 auto; min-height:0; max-height:none; }
.chat-footer{ margin-top:auto; flex:0 0 auto; border-top:1px solid rgba(140,190,255,.14); }
@media (max-width:1060px){
  .vai-chat{ max-width:500px; height:430px; }
}


/* ═══════════ RACBOT v3 — cute silver bot in a cartoon city ═══════════ */

/* ── his world: cartoon city backdrop (hand-drawn SVG scene) ── */
.racbot::before{
  inset:-34px -28px -14px -28px;
  border-radius:20px;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20300%20220%22%3E%3Cdefs%3E%3ClinearGradient%20id=%22sky%22%20x1=%220%22%20y1=%220%22%20x2=%220%22%20y2=%221%22%3E%3Cstop%20offset=%220%22%20stop-color=%22%23BFE3FF%22/%3E%3Cstop%20offset=%22.7%22%20stop-color=%22%23E6F4FF%22/%3E%3Cstop%20offset=%221%22%20stop-color=%22%23F2FAFF%22/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect%20width=%22300%22%20height=%22220%22%20fill=%22url(%23sky)%22/%3E%3Ccircle%20cx=%22252%22%20cy=%2238%22%20r=%2220%22%20fill=%22%23FFE28A%22/%3E%3Ccircle%20cx=%22252%22%20cy=%2238%22%20r=%2227%22%20fill=%22%23FFE28A%22%20opacity=%22.35%22/%3E%3Cg%20fill=%22%23FFFFFF%22%3E%3Cellipse%20cx=%2270%22%20cy=%2242%22%20rx=%2226%22%20ry=%2211%22/%3E%3Cellipse%20cx=%2292%22%20cy=%2236%22%20rx=%2218%22%20ry=%229%22/%3E%3Cellipse%20cx=%2252%22%20cy=%2236%22%20rx=%2214%22%20ry=%228%22/%3E%3Cellipse%20cx=%22185%22%20cy=%2262%22%20rx=%2220%22%20ry=%228%22%20opacity=%22.9%22/%3E%3Cellipse%20cx=%22200%22%20cy=%2257%22%20rx=%2213%22%20ry=%227%22%20opacity=%22.9%22/%3E%3C/g%3E%3Cg%3E%3Crect%20x=%228%22%20y=%2296%22%20width=%2242%22%20height=%2294%22%20rx=%226%22%20fill=%22%237FB2E8%22/%3E%3Crect%20x=%228%22%20y=%2296%22%20width=%2242%22%20height=%2210%22%20rx=%225%22%20fill=%22%236AA0DC%22/%3E%3Cg%20fill=%22%23DDF1FF%22%3E%3Crect%20x=%2216%22%20y=%22114%22%20width=%229%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2233%22%20y=%22114%22%20width=%229%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2216%22%20y=%22132%22%20width=%229%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2233%22%20y=%22132%22%20width=%229%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2216%22%20y=%22150%22%20width=%229%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2233%22%20y=%22150%22%20width=%229%22%20height=%229%22%20rx=%222%22/%3E%3C/g%3E%3Crect%20x=%2256%22%20y=%2266%22%20width=%2252%22%20height=%22124%22%20rx=%227%22%20fill=%22%235E93D8%22/%3E%3Crect%20x=%2270%22%20y=%2252%22%20width=%2224%22%20height=%2218%22%20rx=%225%22%20fill=%22%235E93D8%22/%3E%3Cg%20fill=%22%23CFE9FF%22%3E%3Crect%20x=%2264%22%20y=%2282%22%20width=%2210%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2281%22%20y=%2282%22%20width=%2210%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2297%22%20y=%2282%22%20width=%226%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2264%22%20y=%22102%22%20width=%2210%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2281%22%20y=%22102%22%20width=%2210%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2264%22%20y=%22122%22%20width=%2210%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2281%22%20y=%22122%22%20width=%2210%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2297%22%20y=%22122%22%20width=%226%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2264%22%20y=%22142%22%20width=%2210%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%2281%22%20y=%22142%22%20width=%2210%22%20height=%2210%22%20rx=%222%22/%3E%3C/g%3E%3Crect%20x=%22114%22%20y=%22108%22%20width=%2240%22%20height=%2282%22%20rx=%226%22%20fill=%22%23A8D4F2%22/%3E%3Cg%20fill=%22%23FFFFFF%22%3E%3Crect%20x=%22121%22%20y=%22120%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3Crect%20x=%22136%22%20y=%22120%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3Crect%20x=%22121%22%20y=%22136%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3Crect%20x=%22136%22%20y=%22136%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3Crect%20x=%22121%22%20y=%22152%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3Crect%20x=%22136%22%20y=%22152%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3C/g%3E%3Crect%20x=%22160%22%20y=%2284%22%20width=%2248%22%20height=%22106%22%20rx=%227%22%20fill=%22%2388C7EA%22/%3E%3Crect%20x=%22160%22%20y=%2284%22%20width=%2248%22%20height=%2212%22%20rx=%226%22%20fill=%22%2374B7DE%22/%3E%3Cg%20fill=%22%23F2FBFF%22%3E%3Crect%20x=%22168%22%20y=%22104%22%20width=%229%22%20height=%2212%22%20rx=%222%22/%3E%3Crect%20x=%22184%22%20y=%22104%22%20width=%229%22%20height=%2212%22%20rx=%222%22/%3E%3Crect%20x=%22199%22%20y=%22104%22%20width=%225%22%20height=%2212%22%20rx=%222%22/%3E%3Crect%20x=%22168%22%20y=%22126%22%20width=%229%22%20height=%2212%22%20rx=%222%22/%3E%3Crect%20x=%22184%22%20y=%22126%22%20width=%229%22%20height=%2212%22%20rx=%222%22/%3E%3Crect%20x=%22168%22%20y=%22148%22%20width=%229%22%20height=%2212%22%20rx=%222%22/%3E%3Crect%20x=%22184%22%20y=%22148%22%20width=%229%22%20height=%2212%22%20rx=%222%22/%3E%3Crect%20x=%22199%22%20y=%22148%22%20width=%225%22%20height=%2212%22%20rx=%222%22/%3E%3C/g%3E%3Crect%20x=%22214%22%20y=%22118%22%20width=%2238%22%20height=%2272%22%20rx=%226%22%20fill=%22%23CBE6F8%22/%3E%3Cg%20fill=%22%237FB2E8%22%3E%3Crect%20x=%22221%22%20y=%22130%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3Crect%20x=%22236%22%20y=%22130%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3Crect%20x=%22221%22%20y=%22146%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3Crect%20x=%22236%22%20y=%22146%22%20width=%228%22%20height=%228%22%20rx=%222%22/%3E%3C/g%3E%3Crect%20x=%22256%22%20y=%2298%22%20width=%2238%22%20height=%2292%22%20rx=%226%22%20fill=%22%236AA0DC%22/%3E%3Cg%20fill=%22%23DDF1FF%22%3E%3Crect%20x=%22263%22%20y=%22112%22%20width=%229%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22279%22%20y=%22112%22%20width=%229%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22263%22%20y=%22132%22%20width=%229%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22279%22%20y=%22132%22%20width=%229%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22263%22%20y=%22152%22%20width=%229%22%20height=%2210%22%20rx=%222%22/%3E%3C/g%3E%3C/g%3E%3Ccircle%20cx=%22140%22%20cy=%22182%22%20r=%2212%22%20fill=%22%237ED08F%22/%3E%3Ccircle%20cx=%22131%22%20cy=%22188%22%20r=%229%22%20fill=%22%238FDCA0%22/%3E%3Crect%20x=%22137%22%20y=%22188%22%20width=%226%22%20height=%2212%22%20rx=%222%22%20fill=%22%239A6B4F%22/%3E%3Crect%20x=%220%22%20y=%22196%22%20width=%22300%22%20height=%2224%22%20fill=%22%23DCEBF7%22/%3E%3C/svg%3E");
  background-size:cover; background-position:center bottom;
  border:3px solid rgba(255,255,255,.85);
  box-shadow:0 14px 34px rgba(10,25,50,.35), inset 0 0 0 1px rgba(120,170,220,.25);
  -webkit-mask-image:none; mask-image:none;
  opacity:1;
}
/* ── the floor is now a cartoon road ── */
.racbot::after{
  width:150px; height:22px; bottom:-12px;
  border-radius:8px;
  background:
    repeating-linear-gradient(90deg, #FFD75E 0 12px, transparent 12px 26px) 0 calc(50% - 1px) / 100% 3px no-repeat,
    linear-gradient(180deg, #4A5568 0%, #3A4453 45%, #2B3442 100%);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.22),
    inset 0 -3px 0 rgba(10,16,26,.5),
    0 6px 14px rgba(10,20,40,.4);
}
.rb-shadow{ background:radial-gradient(ellipse, rgba(15,25,45,.4), transparent 70%); }

/* ── silver body: chrome lighting with soft blue ambience ── */
.rb-head{
  background:radial-gradient(circle at 30% 20%, #FFFFFF 0%, #EAF0F8 22%, #C6D2E2 48%, #93A3B8 74%, #64758C 94%, #4E5F76 100%);
  box-shadow:
    inset -6px -6px 12px rgba(50,66,90,.5),
    inset 4px 5px 8px rgba(255,255,255,.9),
    inset -2px 0 6px rgba(120,200,255,.25),
    0 8px 18px rgba(10,20,40,.35);
}
.rb-head::before{ background:radial-gradient(ellipse, rgba(255,255,255,.95), transparent 70%); }
.rb-ear{
  background:radial-gradient(circle at 35% 25%, #F4F8FD, #B9C7D9 55%, #7A8CA3);
  box-shadow:inset -1px -2px 3px rgba(50,66,90,.55), inset 1px 1px 2px rgba(255,255,255,.9);
}
.rb-antenna{ background:linear-gradient(180deg,#D7E1EE,#8A9BB1); }
.rb-torso{
  background:radial-gradient(circle at 32% 18%, #FFFFFF 0%, #E4EBF4 24%, #BECBDC 52%, #8C9DB4 78%, #5D6F87 96%);
  box-shadow:
    inset -6px -6px 12px rgba(50,66,90,.5),
    inset 4px 5px 8px rgba(255,255,255,.9),
    inset -2px 0 6px rgba(120,200,255,.22),
    0 8px 16px rgba(10,20,40,.32);
}
.rb-torso::before{ background:radial-gradient(ellipse, rgba(40,54,74,.45), transparent 70%); }
.rb-torso::after{ background:linear-gradient(90deg, transparent, rgba(60,76,98,.55), transparent); }
.rb-arm{
  background:linear-gradient(90deg, #6B7C93 0%, #C3CFDF 30%, #F2F6FB 48%, #AEBDD0 70%, #5D6F87 100%);
  box-shadow:inset 0 2px 2px rgba(255,255,255,.85), inset 0 -2px 3px rgba(50,66,90,.5), 0 3px 6px rgba(10,20,40,.3);
}
.rb-arm::after{
  background:radial-gradient(circle at 32% 25%, #FFFFFF, #C3CFDF 55%, #7A8CA3);
  box-shadow:inset -1px -2px 3px rgba(50,66,90,.55), 0 2px 4px rgba(10,20,40,.35);
}
.rb-leg{
  background:linear-gradient(90deg, #64758C 0%, #B9C7D9 34%, #EFF4FA 50%, #A5B5C9 70%, #55677F 100%);
  box-shadow:inset 0 2px 2px rgba(255,255,255,.8), inset 0 -2px 3px rgba(50,66,90,.55);
}
.rb-leg::after{
  background:radial-gradient(circle at 30% 20%, #F4F8FD, #AEBDD0 55%, #64758C);
  box-shadow:inset -1px -2px 2px rgba(50,66,90,.6), 0 3px 5px rgba(10,20,40,.45);
}
/* face + lights stay Ractrip cyan/azure so he's still ours */
.rb-face{ background:linear-gradient(180deg,#0B1B33,#123055); }
.rb-chest{
  background:radial-gradient(circle at 35% 30%, #9FF4FF, #17A8E8 70%);
}

/* bubble gets a cartoon border to match the scene */
.racbot-bubble{ border:2.5px solid #0A1526; box-shadow:0 8px 0 rgba(10,21,38,.18), 0 14px 30px rgba(4,12,28,.28); }
.racbot-bubble::after{ filter:drop-shadow(0 3px 0 rgba(10,21,38,.18)); }

/* section bot: same city scene reads clearly on the blue section */
.racbot-bg::before{ opacity:1; }
.racbot-bg{ opacity:1; }
@media (max-width:1060px){
  .racbot-bg{ opacity:.5; }
}
@media (max-width:920px){
  .racbot::before{ inset:-26px -20px -12px -20px; border-width:2.5px; }
  .racbot::after{ width:128px; }
}


/* ═══════════ RACBOT v4 — floating city island (no frame) ═══════════ */

/* the framed card is gone: the whole scene is now a free-floating
   island illustration, and he stands on its road */
.racbot::before{
  content:''; inset:auto; position:absolute;
  left:50%; bottom:-128px; transform:translateX(-50%);
  width:150px; height:20px; border-radius:50%;
  background:radial-gradient(ellipse, rgba(8,20,44,.38), transparent 70%);
  border:none; box-shadow:none; filter:blur(3px);
  background-image:radial-gradient(ellipse, rgba(8,20,44,.38), transparent 70%);
  background-size:auto; mask-image:none; -webkit-mask-image:none;
  z-index:-3; opacity:1;
  animation:rbIslandShadow 6s ease-in-out infinite;
}
@keyframes rbIslandShadow{
  0%,100%{ transform:translateX(-50%) scaleX(1); opacity:1; }
  50%{ transform:translateX(-50%) scaleX(.86); opacity:.75; }
}
.racbot::after{
  left:50%; transform:translateX(-50%);
  bottom:-100px; width:212px; height:170px;
  border-radius:0; box-shadow:none;
  background:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20300%20240%22%3E%3Cg%20fill=%22%23FFFFFF%22%20opacity=%22.95%22%3E%3Cellipse%20cx=%2238%22%20cy=%2230%22%20rx=%2222%22%20ry=%229%22/%3E%3Cellipse%20cx=%2255%22%20cy=%2224%22%20rx=%2214%22%20ry=%227%22/%3E%3Cellipse%20cx=%22258%22%20cy=%2252%22%20rx=%2218%22%20ry=%228%22/%3E%3Cellipse%20cx=%22271%22%20cy=%2247%22%20rx=%2211%22%20ry=%226%22/%3E%3C/g%3E%3Cg%3E%3Crect%20x=%2270%22%20y=%2218%22%20width=%2234%22%20height=%2270%22%20rx=%226%22%20fill=%22%235E93D8%22/%3E%3Crect%20x=%2278%22%20y=%228%22%20width=%2218%22%20height=%2214%22%20rx=%224%22%20fill=%22%235E93D8%22/%3E%3Cg%20fill=%22%23CFE9FF%22%3E%3Crect%20x=%2276%22%20y=%2228%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2290%22%20y=%2228%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2276%22%20y=%2244%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2290%22%20y=%2244%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2276%22%20y=%2260%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2290%22%20y=%2260%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3C/g%3E%3Crect%20x=%22110%22%20y=%2238%22%20width=%2230%22%20height=%2250%22%20rx=%225%22%20fill=%22%23A8D4F2%22/%3E%3Cg%20fill=%22%23FFFFFF%22%3E%3Crect%20x=%22116%22%20y=%2247%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22128%22%20y=%2247%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22116%22%20y=%2260%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22128%22%20y=%2260%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3C/g%3E%3Crect%20x=%22146%22%20y=%2224%22%20width=%2238%22%20height=%2264%22%20rx=%226%22%20fill=%22%2388C7EA%22/%3E%3Crect%20x=%22146%22%20y=%2224%22%20width=%2238%22%20height=%229%22%20rx=%224.5%22%20fill=%22%2374B7DE%22/%3E%3Cg%20fill=%22%23F2FBFF%22%3E%3Crect%20x=%22153%22%20y=%2240%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22167%22%20y=%2240%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22153%22%20y=%2258%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22167%22%20y=%2258%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22153%22%20y=%2274%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3C/g%3E%3Crect%20x=%22190%22%20y=%2246%22%20width=%2228%22%20height=%2242%22%20rx=%225%22%20fill=%22%23CBE6F8%22/%3E%3Cg%20fill=%22%237FB2E8%22%3E%3Crect%20x=%22196%22%20y=%2255%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22207%22%20y=%2255%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22196%22%20y=%2268%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22207%22%20y=%2268%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3C/g%3E%3Ccircle%20cx=%22235%22%20cy=%2276%22%20r=%2211%22%20fill=%22%237ED08F%22/%3E%3Ccircle%20cx=%22227%22%20cy=%2282%22%20r=%228%22%20fill=%22%238FDCA0%22/%3E%3Crect%20x=%22232%22%20y=%2282%22%20width=%225%22%20height=%2210%22%20rx=%222%22%20fill=%22%239A6B4F%22/%3E%3Ccircle%20cx=%2258%22%20cy=%2280%22%20r=%2210%22%20fill=%22%237ED08F%22/%3E%3Crect%20x=%2255%22%20y=%2286%22%20width=%225%22%20height=%229%22%20rx=%222%22%20fill=%22%239A6B4F%22/%3E%3C/g%3E%3Cpath%20d=%22M34%2096%20Q30%2088%2044%2088%20L256%2088%20Q270%2088%20266%2096%20L268%20104%20Q270%20112%20258%20112%20L42%20112%20Q30%20112%2032%20104%20Z%22%20fill=%22%238FBF6E%22/%3E%3Cpath%20d=%22M40%2094%20L260%2094%20L262%20108%20L38%20108%20Z%22%20fill=%22%233A4453%22/%3E%3Crect%20x=%2240%22%20y=%2299%22%20width=%22220%22%20height=%223%22%20fill=%22none%22/%3E%3Cg%20fill=%22%23FFD75E%22%3E%3Crect%20x=%2252%22%20y=%22100%22%20width=%2214%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%2282%22%20y=%22100%22%20width=%2214%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22112%22%20y=%22100%22%20width=%2214%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22142%22%20y=%22100%22%20width=%2214%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22172%22%20y=%22100%22%20width=%2214%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22202%22%20y=%22100%22%20width=%2214%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22232%22%20y=%22100%22%20width=%2214%22%20height=%223%22%20rx=%221.5%22/%3E%3C/g%3E%3Cpath%20d=%22M38%20108%20L262%20108%20Q272%20110%20268%20122%20Q262%20150%20234%20168%20Q206%20186%20168%20196%20Q150%20224%20150%20224%20Q146%20200%20122%20192%20Q84%20180%2062%20158%20Q40%20138%2034%20120%20Q30%20110%2038%20108%20Z%22%20fill=%22%236E87A8%22/%3E%3Cpath%20d=%22M60%20132%20Q90%20158%20130%20170%20Q100%20168%2076%20152%20Q58%20138%2052%20126%20Z%22%20fill=%22%235A7391%22%20opacity=%22.85%22/%3E%3Cpath%20d=%22M238%20150%20Q214%20172%20178%20184%20Q210%20176%20232%20160%20Q244%20150%20248%20138%20Z%22%20fill=%22%238DA3BE%22%20opacity=%22.8%22/%3E%3Cellipse%20cx=%22150%22%20cy=%22120%22%20rx=%228%22%20ry=%224%22%20fill=%22%235A7391%22%20opacity=%22.5%22/%3E%3Cg%20fill=%22%236E87A8%22%3E%3Cpath%20d=%22M24%20150%20q-8%2010%202%2016%20q12%206%2016%20-4%20q3%20-10%20-8%20-14%20q-7%20-2%20-10%202%20Z%22/%3E%3Cpath%20d=%22M272%20128%20q10%206%204%2015%20q-7%209%20-16%203%20q-8%20-6%20-1%20-14%20q6%20-6%2013%20-4%20Z%22/%3E%3C/g%3E%3Cg%20fill=%22%238DA3BE%22%3E%3Ccircle%20cx=%2240%22%20cy=%22188%22%20r=%226%22/%3E%3Ccircle%20cx=%22262%22%20cy=%22176%22%20r=%225%22/%3E%3Ccircle%20cx=%22120%22%20cy=%22212%22%20r=%224%22/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  z-index:-1;
}
/* whole scene floats together */
.racbot{ animation:rbFloat 6s ease-in-out infinite; }
@keyframes rbFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-7px); }
}
/* his contact shadow falls on the island road */
.rb-shadow{ bottom:-4px; width:60px; }

/* section bot: same island, own float that keeps its scale */
.racbot-bg{ animation:rbFloatBg 7s ease-in-out infinite; }
@keyframes rbFloatBg{
  0%,100%{ transform:scale(1.5) translateY(0); }
  50%{ transform:scale(1.5) translateY(-6px); }
}
.racbot-bg::before{ opacity:.55; }

/* give the floating scene breathing room in the hero corner */
.racbot{ bottom:128px; right:46px; }

@media (max-width:1060px){
  .racbot-bg{ animation:none; transform:scale(1.05); opacity:.5; }
}
@media (max-width:920px){
  .racbot{ right:12px; bottom:104px; animation:none; transform:scale(.78); transform-origin:100% 100%; }
  .racbot::after{ width:176px; height:142px; bottom:-84px; }
  .racbot::before{ bottom:-106px; width:120px; }
}


/* ═══ RACBOT v5 — 3D island, centre cleared, scene nudged left ═══ */
.racbot::after{
  width:224px; height:186px; bottom:-108px;
  background:url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20300%20250%22%3E%3Cg%20fill=%22%23FFFFFF%22%20opacity=%22.95%22%3E%3Cellipse%20cx=%2252%22%20cy=%2226%22%20rx=%2220%22%20ry=%228%22/%3E%3Cellipse%20cx=%2267%22%20cy=%2221%22%20rx=%2212%22%20ry=%226%22/%3E%3Cellipse%20cx=%22248%22%20cy=%2240%22%20rx=%2217%22%20ry=%227%22/%3E%3Cellipse%20cx=%22260%22%20cy=%2235%22%20rx=%2210%22%20ry=%225%22/%3E%3Cellipse%20cx=%22150%22%20cy=%2216%22%20rx=%2213%22%20ry=%225%22%20opacity=%22.8%22/%3E%3C/g%3E%3Cg%3E%3C%21--%20LEFT%20cluster%20--%3E%3Cpath%20d=%22M52%2030%20l10%20-5%20v64%20l-10%205%20Z%22%20fill=%22%234677B8%22/%3E%3Crect%20x=%2218%22%20y=%2230%22%20width=%2234%22%20height=%2264%22%20rx=%223%22%20fill=%22%235E93D8%22/%3E%3Cpath%20d=%22M18%2030%20l10%20-5%20h34%20l-10%205%20Z%22%20fill=%22%2379A9E6%22/%3E%3Cg%20fill=%22%23CFE9FF%22%3E%3Crect%20x=%2224%22%20y=%2240%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2238%22%20y=%2240%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2224%22%20y=%2256%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2238%22%20y=%2256%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2224%22%20y=%2272%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3Crect%20x=%2238%22%20y=%2272%22%20width=%228%22%20height=%229%22%20rx=%222%22/%3E%3C/g%3E%3Cpath%20d=%22M88%2050%20l8%20-4%20v46%20l-8%204%20Z%22%20fill=%22%2386B8DE%22/%3E%3Crect%20x=%2260%22%20y=%2250%22%20width=%2228%22%20height=%2246%22%20rx=%223%22%20fill=%22%23A8D4F2%22/%3E%3Cpath%20d=%22M60%2050%20l8%20-4%20h28%20l-8%204%20Z%22%20fill=%22%23C2E2F8%22/%3E%3Cg%20fill=%22%23FFFFFF%22%3E%3Crect%20x=%2266%22%20y=%2258%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%2277%22%20y=%2258%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%2266%22%20y=%2271%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%2277%22%20y=%2271%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3C/g%3E%3Ccircle%20cx=%22102%22%20cy=%2282%22%20r=%229%22%20fill=%22%237ED08F%22/%3E%3Ccircle%20cx=%2296%22%20cy=%2287%22%20r=%226%22%20fill=%22%238FDCA0%22/%3E%3Crect%20x=%2299%22%20y=%2287%22%20width=%224%22%20height=%229%22%20rx=%222%22%20fill=%22%239A6B4F%22/%3E%3C/g%3E%3Cg%3E%3C%21--%20RIGHT%20cluster%20--%3E%3Cpath%20d=%22M246%2026%20l9%20-5%20v70%20l-9%205%20Z%22%20fill=%22%236FA9CF%22/%3E%3Crect%20x=%22210%22%20y=%2226%22%20width=%2236%22%20height=%2270%22%20rx=%223%22%20fill=%22%2388C7EA%22/%3E%3Cpath%20d=%22M210%2026%20l9%20-5%20h36%20l-9%205%20Z%22%20fill=%22%23A5DBF5%22/%3E%3Cg%20fill=%22%23F2FBFF%22%3E%3Crect%20x=%22216%22%20y=%2236%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22230%22%20y=%2236%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22216%22%20y=%2254%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22230%22%20y=%2254%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22216%22%20y=%2272%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3Crect%20x=%22230%22%20y=%2272%22%20width=%228%22%20height=%2210%22%20rx=%222%22/%3E%3C/g%3E%3Cpath%20d=%22M280%2054%20l8%20-4%20v42%20l-8%204%20Z%22%20fill=%22%23A9CBE6%22/%3E%3Crect%20x=%22252%22%20y=%2254%22%20width=%2228%22%20height=%2242%22%20rx=%223%22%20fill=%22%23CBE6F8%22/%3E%3Cpath%20d=%22M252%2054%20l8%20-4%20h28%20l-8%204%20Z%22%20fill=%22%23E2F1FB%22/%3E%3Cg%20fill=%22%237FB2E8%22%3E%3Crect%20x=%22258%22%20y=%2262%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22269%22%20y=%2262%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22258%22%20y=%2275%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3Crect%20x=%22269%22%20y=%2275%22%20width=%227%22%20height=%227%22%20rx=%222%22/%3E%3C/g%3E%3Ccircle%20cx=%22200%22%20cy=%2284%22%20r=%228%22%20fill=%22%237ED08F%22/%3E%3Crect%20x=%22198%22%20y=%2289%22%20width=%224%22%20height=%228%22%20rx=%222%22%20fill=%22%239A6B4F%22/%3E%3C/g%3E%3C%21--%20grass%20platform%20top%20--%3E%3Cpath%20d=%22M30%20100%20Q26%2090%2044%2090%20L256%2090%20Q274%2090%20270%20100%20L272%20110%20Q274%20118%20258%20118%20L42%20118%20Q26%20118%2028%20110%20Z%22%20fill=%22%238FBF6E%22/%3E%3Cpath%20d=%22M32%2096%20Q40%2092%2060%2092%20L240%2092%20Q262%2092%20266%2097%20L266%2099%20Q250%2095%20150%2095%20Q50%2095%2034%20100%20Z%22%20fill=%22%23A5D383%22%20opacity=%22.9%22/%3E%3C%21--%20road%20with%20perspective%20(narrower%20at%20back,%20flared%20at%20front)%20--%3E%3Cpath%20d=%22M46%2096%20L254%2096%20L262%20114%20L38%20114%20Z%22%20fill=%22%233A4453%22/%3E%3Cpath%20d=%22M46%2096%20L254%2096%20L255.5%20100%20L44.5%20100%20Z%22%20fill=%22%234A5568%22/%3E%3Cg%20fill=%22%23FFD75E%22%3E%3Crect%20x=%2256%22%20y=%22104%22%20width=%2213%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%2286%22%20y=%22104%22%20width=%2213%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22116%22%20y=%22104%22%20width=%2213%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22146%22%20y=%22104%22%20width=%2213%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22176%22%20y=%22104%22%20width=%2213%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22206%22%20y=%22104%22%20width=%2213%22%20height=%223%22%20rx=%221.5%22/%3E%3Crect%20x=%22234%22%20y=%22104%22%20width=%2213%22%20height=%223%22%20rx=%221.5%22/%3E%3C/g%3E%3C%21--%20soil%20thickness%20under%20the%20platform%20edge%20--%3E%3Cpath%20d=%22M38%20114%20L262%20114%20Q268%20116%20266%20122%20Q220%20130%20150%20130%20Q80%20130%2034%20122%20Q32%20116%2038%20114%20Z%22%20fill=%22%238A6B52%22/%3E%3Cpath%20d=%22M38%20114%20L262%20114%20L261%20117%20Q150%20124%2039%20117%20Z%22%20fill=%22%236FA352%22/%3E%3C%21--%203D%20rock%20underside:%20base%20%2B%20left%20shadow%20%2B%20right%20light%20--%3E%3Cpath%20d=%22M36%20122%20Q34%20120%2040%20119%20L260%20119%20Q266%20120%20264%20124%20Q256%20152%20226%20170%20Q198%20186%20166%20196%20Q152%20226%20150%20232%20Q146%20204%20124%20194%20Q88%20182%2062%20158%20Q42%20140%2036%20126%20Z%22%20fill=%22%236E87A8%22/%3E%3Cpath%20d=%22M44%20126%20Q60%20152%2092%20170%20Q120%20184%20140%20190%20Q104%20184%2076%20164%20Q54%20148%2044%20130%20Z%22%20fill=%22%2355708F%22/%3E%3Cpath%20d=%22M252%20130%20Q240%20156%20210%20172%20Q186%20184%20168%20190%20Q202%20182%20228%20164%20Q248%20148%20254%20134%20Z%22%20fill=%22%238DA3BE%22/%3E%3Cpath%20d=%22M150%20232%20Q148%20214%20138%20202%20Q150%20208%20154%20202%20Q152%20216%20150%20232%20Z%22%20fill=%22%2355708F%22%20opacity=%22.7%22/%3E%3Cg%20stroke=%22%2355708F%22%20stroke-width=%222%22%20stroke-linecap=%22round%22%20opacity=%22.55%22%20fill=%22none%22%3E%3Cpath%20d=%22M110%20150%20q8%206%204%2014%22/%3E%3Cpath%20d=%22M186%20158%20q-6%208%20-12%2010%22/%3E%3Cpath%20d=%22M148%20172%20q6%204%204%2012%22/%3E%3C/g%3E%3C%21--%20drifting%20rock%20chunks%20with%20lit%20tops%20--%3E%3Cg%3E%3Cpath%20d=%22M20%20152%20q-7%209%202%2014%20q10%206%2015%20-3%20q4%20-9%20-7%20-13%20q-6%20-2%20-10%202%20Z%22%20fill=%22%236E87A8%22/%3E%3Cpath%20d=%22M22%20152%20q6%20-3%2012%201%20l-2%204%20q-6%20-4%20-12%20-1%20Z%22%20fill=%22%238DA3BE%22/%3E%3C/g%3E%3Cg%3E%3Cpath%20d=%22M272%20132%20q9%205%204%2013%20q-6%208%20-14%203%20q-8%20-5%20-2%20-12%20q5%20-6%2012%20-4%20Z%22%20fill=%22%236E87A8%22/%3E%3Cpath%20d=%22M272%20133%20q6%200%209%205%20l-3%203%20q-3%20-5%20-8%20-5%20Z%22%20fill=%22%238DA3BE%22/%3E%3C/g%3E%3Ccircle%20cx=%2252%22%20cy=%22196%22%20r=%225%22%20fill=%22%238DA3BE%22/%3E%3Ccircle%20cx=%22250%22%20cy=%22184%22%20r=%224%22%20fill=%22%238DA3BE%22/%3E%3Ccircle%20cx=%22128%22%20cy=%22222%22%20r=%223.5%22%20fill=%22%238DA3BE%22/%3E%3C/svg%3E") center / contain no-repeat;
}
/* island now has real depth (building side/top faces, soil edge,
   layered rock shading) — deepen its page shadow to match */
.racbot::before{ bottom:-136px; width:160px; filter:blur(4px); }

/* nudge the whole scene left off the corner, aligned with the hero */
.racbot{ right:112px; bottom:132px; }

@media (max-width:1280px){ .racbot{ right:64px; } }
@media (max-width:920px){
  .racbot{ right:18px; bottom:106px; }
  .racbot::after{ width:184px; height:152px; bottom:-88px; }
  .racbot::before{ bottom:-110px; width:128px; }
}

/* ═══════════ RACBOT v6 — the glossy white reference design ═══════════
      No island, no backdrop. He walks in along the ground from the
      right edge of the screen to his spot, stands, strolls a little,
      waves and greets. */

/* scene elements gone */
.racbot::before, .racbot::after{ content:none !important; }
.racbot, .racbot-bg{ animation:none; }

/* his marked spot: below the globe, left of the corner */
.racbot{ right:40%; left:auto; bottom:92px; width:112px; height:154px; }

/* ── HEAD: big glossy white dome ── */
.rb-head{
  top:10px; width:78px; height:62px; border-radius:38px 38px 30px 30px;
  background:radial-gradient(circle at 32% 20%, #FFFFFF 0%, #F7FAFD 30%, #E4EAF2 58%, #C4CFDD 85%, #A9B6C7 100%);
  box-shadow:
    inset -7px -8px 14px rgba(120,140,165,.45),
    inset 5px 6px 10px rgba(255,255,255,1),
    inset -2px 0 8px rgba(90,190,255,.18),
    0 10px 22px rgba(15,30,55,.35);
}
.rb-head::before{ top:6px; left:14px; width:26px; height:11px;
  background:radial-gradient(ellipse, rgba(255,255,255,1), transparent 70%); }
/* face: black glass visor with big glowing ring eyes */
.rb-face{
  inset:12px 10px 10px 10px; border-radius:16px 16px 20px 20px;
  background:linear-gradient(160deg,#20242C 0%,#0A0D12 55%,#05070A 100%);
  box-shadow:inset 0 2px 4px rgba(0,0,0,.8), inset 0 -1px 0 rgba(120,180,255,.18),
             0 1px 0 rgba(255,255,255,.7);
}
.rb-eye{
  top:9px; width:15px; height:15px; border-radius:50%;
  background:transparent;
  border:3.5px solid #35C4FF;
  box-shadow:0 0 9px #2AB4FF, 0 0 3px #8FE4FF, inset 0 0 5px rgba(53,196,255,.9);
}
.rb-eye-l{ left:9px; } .rb-eye-r{ right:9px; }
.rb-mouth{ display:none; }
/* headphone ears: blue glowing pods */
.rb-ear{
  top:18px; width:10px; height:26px; border-radius:6px;
  background:linear-gradient(180deg,#4FD4FF 0%,#1FA8E8 45%,#0E7FC2 100%);
  box-shadow:inset 0 2px 3px rgba(255,255,255,.75), inset 0 -2px 4px rgba(6,60,110,.6),
             0 0 8px rgba(47,196,255,.55);
}
.rb-ear-l{ left:-8px; } .rb-ear-r{ right:-8px; }
/* twin antennae */
.rb-antenna{ width:0; height:0; background:none; top:0; }
.rb-antenna::before, .rb-antenna::after{
  content:''; position:absolute; bottom:0; width:2.5px; height:15px; border-radius:2px;
  background:linear-gradient(180deg,#39404B,#171B21);
}
.rb-antenna::before{ left:-19px; transform:rotate(-22deg); }
.rb-antenna::after{ left:16px; transform:rotate(22deg); }
.rb-ant-tip{ display:none; }

/* ── TORSO: white rounded shell, pill chest light ── */
.rb-torso{
  top:72px; width:52px; height:40px; border-radius:20px 20px 24px 24px;
  background:radial-gradient(circle at 32% 18%, #FFFFFF 0%, #F2F6FA 34%, #DEE6EF 62%, #BDC9D8 88%, #A2AFC1 100%);
  box-shadow:
    inset -6px -7px 12px rgba(120,140,165,.45),
    inset 4px 5px 9px rgba(255,255,255,1),
    0 8px 18px rgba(15,30,55,.3);
}
.rb-torso::before{ width:36px; height:8px;
  background:radial-gradient(ellipse, rgba(40,54,74,.4), transparent 70%); }
.rb-torso::after{ display:none; }
.rb-chest{
  top:10px; width:20px; height:9px; border-radius:100px;
  background:linear-gradient(180deg,#7FE7FF,#22ABF0);
  box-shadow:0 0 10px rgba(47,196,255,.85), inset 0 1px 2px rgba(255,255,255,.9),
             inset 0 -2px 3px rgba(8,80,140,.6);
  animation:rbPing 3s ease-in-out infinite;
}

/* ── ARMS: white with black shoulder + black glove hands ── */
.rb-arm{
  top:74px; width:11px; height:27px; border-radius:8px;
  background:linear-gradient(90deg,#B7C3D2 0%,#F2F6FA 38%,#FFFFFF 52%,#E4EAF2 68%,#A9B6C7 100%);
  box-shadow:inset 0 2px 2px rgba(255,255,255,.95), inset 0 -2px 3px rgba(120,140,165,.5),
             0 3px 6px rgba(15,30,55,.28);
}
.rb-arm::before{  /* black shoulder joint */
  content:''; position:absolute; top:-4px; left:50%; transform:translateX(-50%);
  width:13px; height:13px; border-radius:50%;
  background:radial-gradient(circle at 32% 25%, #3A414C, #14181F 70%);
  box-shadow:inset 0 1px 2px rgba(255,255,255,.25), 0 2px 4px rgba(10,20,40,.4);
}
.rb-arm::after{  /* black glove hand */
  bottom:-7px; width:13px; height:13px;
  background:radial-gradient(circle at 32% 25%, #3A414C, #101318 70%);
  box-shadow:inset 0 1px 2px rgba(255,255,255,.2), 0 2px 4px rgba(10,20,40,.45);
}
.rb-arm-l{ left:15px; } .rb-arm-r{ right:15px; }

/* ── LEGS: white thighs, black knees, big white shoes ── */
.rb-leg{
  top:108px; width:14px; height:24px; border-radius:8px;
  background:linear-gradient(90deg,#B7C3D2 0%,#F5F8FB 40%,#FFFFFF 52%,#E0E7EF 70%,#A2AFC1 100%),
             linear-gradient(180deg, transparent 55%, rgba(20,24,31,.9) 58%, rgba(20,24,31,.9) 66%, transparent 69%);
  background-blend-mode:normal;
  box-shadow:inset 0 2px 2px rgba(255,255,255,.9), inset 0 -2px 3px rgba(120,140,165,.5);
}
.rb-leg::before{  /* black knee band */
  content:''; position:absolute; top:11px; left:1px; right:1px; height:4px; border-radius:3px;
  background:linear-gradient(90deg,#2A2F38,#14181F 55%,#2A2F38);
}
.rb-leg::after{  /* glossy white shoe with dark sole */
  bottom:-9px; left:50%; transform:translateX(-54%);
  width:22px; height:12px; border-radius:10px 12px 7px 7px;
  background:radial-gradient(circle at 32% 18%, #FFFFFF, #E4EAF2 55%, #BDC9D8 90%);
  box-shadow:inset 0 -3.5px 0 #14181F, inset 0 2px 2px rgba(255,255,255,1),
             0 3px 5px rgba(10,20,40,.45);
}
.rb-leg-l{ left:32px; } .rb-leg-r{ right:32px; }

/* ground contact shadow */
.rb-shadow{ bottom:-6px; width:78px; height:12px; filter:blur(2px);
  background:radial-gradient(ellipse, rgba(8,18,36,.5), transparent 70%); }

/* ── WALK-IN: from the right edge of the SCREEN to his spot ── */
.rb-enter{ animation:rbWalkIn 3.3s cubic-bezier(.32,.6,.35,1) both; }
@keyframes rbWalkIn{
  0%{ transform:translateX(46vw); opacity:0; }
  6%{ opacity:1; }
  90%{ transform:translateX(4px); }
  100%{ transform:translateX(0); }
}
.rb-walking .racbot-body{ animation:rbWalkBob .45s ease-in-out infinite; }
@keyframes rbWalkBob{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-2.5px)} }

/* ── stroll emote: wanders a little left-right, feet stepping ── */
.rb-stroll .racbot-body{ animation:rbStroll 2.6s ease-in-out both; }
.rb-stroll .rb-leg-l{ animation:rbStepL .4s ease-in-out 6; }
.rb-stroll .rb-leg-r{ animation:rbStepR .4s ease-in-out 6; }
.rb-stroll .rb-arm-l{ animation:rbSwingL .4s ease-in-out 6; }
.rb-stroll .rb-arm-r{ animation:rbSwingR .4s ease-in-out 6; }
@keyframes rbStroll{
  0%{ transform:translateX(0); }
  30%{ transform:translateX(16px); }
  50%{ transform:translateX(16px); }
  85%{ transform:translateX(-6px); }
  100%{ transform:translateX(0); }
}

/* idle: calmer sway for the new body */
.rb-idle .racbot-body{ animation:rbIdle3d 5.6s ease-in-out infinite; }

/* section bot: same robot, standing free (no island), self-animated */
.racbot-bg{ transform:scale(1.45); opacity:1; right:36px; bottom:24px; }
.racbot-bg .racbot-body{ animation:rbIdle3d 6s ease-in-out infinite; }
@media (max-width:1280px){ .racbot{ right:36%; } }
@media (max-width:1060px){ .racbot-bg{ transform:scale(1); opacity:.45; } }
@media (max-width:920px){
  .racbot{ right:16px; bottom:88px; transform:scale(.8); transform-origin:100% 100%; animation:none; }
  .rb-enter{ animation:rbWalkIn 2.6s cubic-bezier(.32,.6,.35,1) both; }
}

/* ═══ RACBOT v6.1 — slow sideways walk, then turns to face front ═══ */

/* slower stride across the screen */
.rb-enter{ animation:rbWalkIn 5.6s linear both; }
@keyframes rbWalkIn{
  0%{ transform:translateX(46vw); opacity:0; }
  4%{ opacity:1; }
  100%{ transform:translateX(0); }
}
/* while walking he faces the direction he's going (side profile) */
.rb-walking .racbot-body{ animation:rbWalkSide .62s ease-in-out infinite; }
@keyframes rbWalkSide{
  0%,100%{ transform:rotateY(62deg) translateY(0); }
  50%{ transform:rotateY(62deg) translateY(-2.5px); }
}
/* slower, longer steps to match the pace */
.rb-walking .rb-leg-l{ animation:rbStepL .62s ease-in-out infinite; }
.rb-walking .rb-leg-r{ animation:rbStepR .62s ease-in-out infinite; }
.rb-walking .rb-arm-l{ animation:rbSwingL .62s ease-in-out infinite; }
.rb-walking .rb-arm-r{ animation:rbSwingR .62s ease-in-out infinite; }

/* arriving: pivots smoothly to stand front-facing */
.rb-turn .racbot-body{ animation:rbTurnFront .78s cubic-bezier(.3,.8,.3,1.15) both; }
@keyframes rbTurnFront{
  0%{ transform:rotateY(62deg); }
  100%{ transform:rotateY(0deg); }
}

/* stroll emote: turns sideways to wander, faces front again at each stop */
.rb-stroll .racbot-body{ animation:rbStroll 2.6s ease-in-out both; }
@keyframes rbStroll{
  0%{ transform:translateX(0) rotateY(0); }
  12%{ transform:translateX(3px) rotateY(-58deg); }
  32%{ transform:translateX(17px) rotateY(-58deg); }
  46%{ transform:translateX(17px) rotateY(0); }
  58%{ transform:translateX(14px) rotateY(58deg); }
  86%{ transform:translateX(-4px) rotateY(58deg); }
  96%{ transform:translateX(0) rotateY(0); }
  100%{ transform:translateX(0) rotateY(0); }
}
@media (max-width:920px){
  .rb-enter{ animation:rbWalkIn 4.2s linear both; }
}

/* ═══ RACBOT v6.2 — stands & walks along the SEARCH BOX top edge,
      walks facing FRONT (no flat-looking profile spin) ═══ */

/* anchored to the search card: his feet rest on its top border,
   and his walk line IS that border */
.search-box{ position:relative; }
.search-box > .racbot{
  position:absolute; top:-149px; right:36%; left:auto; bottom:auto;
}

/* walking now keeps him front-facing: lean into the direction,
   eyes glance where he's going, legs and arms do the work */
.rb-walking .racbot-body{ animation:rbWalkFront .62s ease-in-out infinite; }
@keyframes rbWalkFront{
  0%,100%{ transform:rotateZ(-4.5deg) translateY(0); }
  50%{ transform:rotateZ(-4.5deg) translateY(-3px); }
}
.rb-walking .rb-eye-l, .rb-walking .rb-eye-r{ transform:translateX(-3px); }
.rb-turn .racbot-body{ animation:rbSettleFront .7s cubic-bezier(.3,.8,.3,1.2) both; }
@keyframes rbSettleFront{
  0%{ transform:rotateZ(-4.5deg); }
  60%{ transform:rotateZ(1.6deg); }
  100%{ transform:rotateZ(0); }
}
.rb-turn .rb-eye-l, .rb-turn .rb-eye-r{ transform:translateX(0); }

/* strolls the same way: front-facing, leaning into each direction,
   eyes leading, stepping along the card's top edge */
@keyframes rbStroll{
  0%{ transform:translateX(0) rotateZ(0); }
  12%{ transform:translateX(4px) rotateZ(4deg); }
  32%{ transform:translateX(20px) rotateZ(4deg); }
  46%{ transform:translateX(20px) rotateZ(0); }
  58%{ transform:translateX(16px) rotateZ(-4deg); }
  86%{ transform:translateX(-3px) rotateZ(-4deg); }
  96%,100%{ transform:translateX(0) rotateZ(0); }
}
.rb-stroll .rb-eye-l, .rb-stroll .rb-eye-r{ transition:transform .3s; }

/* extra depth so he never reads flat: stronger core shadows and a
   soft cast shadow hugging the card edge */
.rb-head{ filter:drop-shadow(0 3px 2px rgba(15,30,55,.18)); }
.rb-torso{ filter:drop-shadow(0 3px 2px rgba(15,30,55,.16)); }
.rb-shadow{ bottom:-4px; width:70px; opacity:.85; }

@media (max-width:1280px){ .search-box > .racbot{ right:30%; } }
@media (max-width:920px){
  .search-box > .racbot{ right:8%; top:-122px; transform:scale(.78); transform-origin:100% 100%; }
}

/* ═══ RACBOT v7 — leaps off the globe, lands on his spot ═══
      A real jump: crouch on the globe's edge, spring-launch,
      gravity-accelerated arc, squash on impact, rebound, settle.
      His shadow only appears as the ground rushes up — that's
      what sells the landing. */

.rb-jump{ animation:rbJumpArc 2.05s linear both; }
@keyframes rbJumpArc{
  0%{ transform:translate(15vw,-46vh); opacity:0; }
  6%{ transform:translate(15vw,-46vh); opacity:1; }     /* appears at the globe's rim */
  14%{ transform:translate(15vw,-46vh); }               /* crouch beat */
  20%{ transform:translate(14vw,-50vh); }               /* springs UP first */
  38%{ transform:translate(11vw,-44vh); }               /* apex drifting out */
  58%{ transform:translate(6.5vw,-27vh); }              /* gravity takes over */
  76%{ transform:translate(2.4vw,-9.5vh); }             /* accelerating down */
  88%{ transform:translate(0,0); }                      /* touchdown */
  100%{ transform:translate(0,0); }
}
.rb-jump .racbot-body{ animation:rbJumpBody 2.05s cubic-bezier(.4,.5,.6,.5) both; }
@keyframes rbJumpBody{
  0%,8%{ transform:scaleY(1) ; }
  14%{ transform:scaleY(.86) scaleX(1.08); }            /* deep crouch */
  20%{ transform:scaleY(1.12) scaleX(.93); }            /* launch stretch */
  40%{ transform:scale(1) rotateZ(-3deg); }
  70%{ transform:scale(1) rotateZ(-6deg); }             /* leaning into the fall */
  84%{ transform:scaleY(1.06) scaleX(.96) rotateZ(-3deg); }
  88%{ transform:scaleY(.76) scaleX(1.18) rotateZ(0); } /* SQUASH — impact */
  93%{ transform:scaleY(1.08) scaleX(.95); }            /* rebound */
  97%{ transform:scaleY(.98) scaleX(1.01); }
  100%{ transform:scale(1); }
}
/* limbs in flight: arms thrown up, legs tucked; everything lands together */
.rb-jump .rb-arm-l{ animation:rbJumpArmL 2.05s ease-in-out both; }
.rb-jump .rb-arm-r{ animation:rbJumpArmR 2.05s ease-in-out both; }
@keyframes rbJumpArmL{
  0%,14%{ transform:rotate(8deg); }
  24%,74%{ transform:rotate(150deg); }
  88%{ transform:rotate(-4deg); }
  100%{ transform:rotate(8deg); }
}
@keyframes rbJumpArmR{
  0%,14%{ transform:rotate(-8deg); }
  24%,74%{ transform:rotate(-150deg); }
  88%{ transform:rotate(4deg); }
  100%{ transform:rotate(-8deg); }
}
.rb-jump .rb-leg-l{ animation:rbJumpLegL 2.05s ease-in-out both; }
.rb-jump .rb-leg-r{ animation:rbJumpLegR 2.05s ease-in-out both; }
@keyframes rbJumpLegL{
  0%,16%{ transform:rotate(0); }
  30%,72%{ transform:rotate(26deg); }                   /* tucked */
  86%{ transform:rotate(-8deg); }                       /* reaching for the ground */
  92%{ transform:rotate(4deg); }
  100%{ transform:rotate(0); }
}
@keyframes rbJumpLegR{
  0%,16%{ transform:rotate(0); }
  30%,72%{ transform:rotate(-26deg); }
  86%{ transform:rotate(8deg); }
  92%{ transform:rotate(-4deg); }
  100%{ transform:rotate(0); }
}
/* the shadow: gone while airborne, rushes in under him, flashes wide
   at impact, then settles */
.rb-jump .rb-shadow{ animation:rbJumpShadow 2.05s linear both; }
@keyframes rbJumpShadow{
  0%,55%{ opacity:0; transform:translateX(-50%) scaleX(.25); }
  76%{ opacity:.45; transform:translateX(-50%) scaleX(.6); }
  87%{ opacity:.9; transform:translateX(-50%) scaleX(.95); }
  90%{ opacity:1; transform:translateX(-50%) scaleX(1.5); }   /* impact puff */
  96%{ opacity:.85; transform:translateX(-50%) scaleX(1.05); }
  100%{ opacity:.85; transform:translateX(-50%) scaleX(1); }
}
@media (max-width:920px){
  @keyframes rbJumpArc{
    0%{ transform:translate(20vw,-34vh); opacity:0; }
    6%{ transform:translate(20vw,-34vh); opacity:1; }
    14%{ transform:translate(20vw,-34vh); }
    20%{ transform:translate(18.5vw,-37vh); }
    38%{ transform:translate(14vw,-32vh); }
    58%{ transform:translate(8.5vw,-20vh); }
    76%{ transform:translate(3vw,-7vh); }
    88%,100%{ transform:translate(0,0); }
  }
}

/* ═══ HEADER v4 — collapses away completely on scroll down ═══
      Same springy width-morph, but it now contracts all the way to
      nothing and vanishes. Scrolling up births it back the same way. */
#nav{
  transition:max-width .55s cubic-bezier(.4,.7,.25,1),
             padding .55s cubic-bezier(.4,.7,.25,1),
             opacity .38s ease,
             background .38s, box-shadow .38s, border-color .38s;
}
#nav.nav-gone{
  max-width:0; min-width:0; padding:0;
  opacity:0; border-color:transparent; box-shadow:none;
  overflow:hidden; pointer-events:none;
}
#nav.nav-gone .nav-wrap{ min-width:520px; }  /* content holds shape while the capsule swallows it */
/* the island-state styles no longer apply to scrolling (class renamed),
   so the RacAi pill stays a hidden extra — harmless */

/* ═══ COMPACT HERO v2 — everything lifts so the search card fits
      fully in one screen ═══ */

.hero{ min-height:0; align-items:flex-start; }
.hero-content{ padding-top:118px; padding-bottom:0; }

/* two-line headline, slightly tighter */
.hero-h1.hero-h1-two{
  font-size:clamp(40px,4.6vw,64px);
  line-height:1.04; letter-spacing:-1.5px;
  margin-bottom:14px;
}
.hero-pill{ margin-bottom:16px; }
.hero-sub{ margin-bottom:22px; max-width:470px; }
.hero-actions{ margin-bottom:26px; }
.hero-kpis{ margin-top:0; padding-top:20px; }
.kpi-val{ font-size:clamp(26px,2.6vw,36px); }

/* globe side rises and tightens with the text */
.hero-right{ align-self:flex-start; }
.globe-stage{ transform:scale(.92); transform-origin:top center; margin-top:-8px; }

/* search card follows the hero up — the whole card + Popular strip
   lands inside the first screen */
.search-center{ margin-top:-36px !important; padding-top:0 !important; position:relative; z-index:120; }

@media (max-width:1280px){
  .hero-content{ padding-top:108px; }
  .globe-stage{ transform:scale(.84); }
}
@media (max-width:920px){
  .hero-content{ padding-top:96px; }
  .hero-h1.hero-h1-two{ font-size:clamp(34px,9vw,44px); }
  .globe-stage{ transform:none; margin-top:0; }
  .search-center{ margin-top:0 !important; }
}

/* ═══ HERO LAYOUT v3 — lifted higher, bigger globe up-right,
      rating badge pushed right with breathing room ═══ */

/* whole hero block rises toward the nav */
.hero-content{ padding-top:84px; }

/* globe: slightly larger, shifted up and to the right */
.globe-stage{
  transform:translate(52px,-24px) scale(1.04);
  transform-origin:top center;
  margin-top:0;
}

/* rating badge: rides right with the globe and keeps clear
   distance above the search card */
.rating-float{
  left:auto; right:-64px; bottom:6px;
  transform:none;
}

@media (max-width:1500px){
  .globe-stage{ transform:translate(28px,-18px) scale(.98); }
  .rating-float{ right:-28px; }
}
@media (max-width:1280px){
  .hero-content{ padding-top:78px; }
  .globe-stage{ transform:translate(10px,-12px) scale(.88); }
  .rating-float{ right:0; }
}
@media (max-width:920px){
  .hero-content{ padding-top:92px; }
  .globe-stage{ transform:none; }
  .rating-float{ left:50%; right:auto; transform:translateX(-50%); bottom:-16px; }
}

/* ═══ HERO BALANCE PASS — slightly smaller, centred, no collisions ═══ */

/* hero a touch smaller and vertically balanced between nav & search */
.hero-content{ padding-top:96px; }
.hero-h1.hero-h1-two{ font-size:clamp(38px,4.2vw,58px); }
.hero-sub{ font-size:15px; }
.globe-stage{ transform:translate(46px,-18px) scale(.98); }

/* search card drops a little into the spare space below it */
.search-center{ margin-top:-4px !important; }

/* rating badge rises clear of the search card — aligned, no collision */
.rating-float{ bottom:40px; right:-56px; }

@media (max-width:1500px){
  .globe-stage{ transform:translate(26px,-14px) scale(.94); }
  .rating-float{ right:-22px; bottom:36px; }
}
@media (max-width:1280px){
  .globe-stage{ transform:translate(8px,-10px) scale(.86); }
  .rating-float{ right:0; bottom:30px; }
  .search-center{ margin-top:0 !important; }
}
@media (max-width:920px){
  .rating-float{ left:50%; right:auto; transform:translateX(-50%); bottom:-16px; }
}

/* ═══ FINAL HERO POLISH — rating badge to the green mark,
      punchy modern gradient headline ═══ */

/* rating badge: left and down to the marked position */
.rating-float{ right:-14px; bottom:8px; }
@media (max-width:1500px){ .rating-float{ right:-4px; bottom:8px; } }
@media (max-width:1280px){ .rating-float{ right:0; bottom:6px; } }

/* headline: modern, punchy, blue-gradient */
.hero-h1.hero-h1-two{
  font-family:'Cabinet Grotesk',sans-serif;
  font-weight:900;
  font-size:clamp(40px,4.4vw,62px);
  line-height:.99;
  letter-spacing:-2.2px;
  color:#FFFFFF;
  filter:drop-shadow(0 10px 34px rgba(0,102,255,.30));
}
.hero-h1.hero-h1-two .accent{
  background:linear-gradient(92deg,#5AA2FF 0%,#2FC7CE 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-style:normal;
}
.hero-h1.hero-h1-two .line-teal{
  background:linear-gradient(92deg,#6EA8FF 0%,#38D2FF 55%,#8FE8FF 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  -webkit-text-stroke:0; font-style:normal;
}
@media (max-width:920px){
  .hero-h1.hero-h1-two{ font-size:clamp(34px,9vw,44px); letter-spacing:-1.4px; }
}

/* ═══ HEADLINE v3 — Space Grotesk + aurora violet-cyan ═══ */
.hero-h1.hero-h1-two{
  font-family:'Space Grotesk','Cabinet Grotesk',sans-serif;
  font-weight:700;
  font-size:clamp(40px,4.5vw,63px);
  line-height:1.02; letter-spacing:-2.6px;
  color:#F4F8FF;
  filter:drop-shadow(0 10px 36px rgba(90,80,255,.28));
}
.hero-h1.hero-h1-two .accent{
  background:linear-gradient(94deg,#8B7BFF 0%,#5AA8FF 48%,#3BE0E8 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-h1.hero-h1-two .line-teal{
  background:linear-gradient(94deg,#5AA8FF 0%,#3BE0E8 60%,#7CF7D4 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  -webkit-text-stroke:0;
}
@media (max-width:920px){
  .hero-h1.hero-h1-two{ letter-spacing:-1.6px; }
}

/* ═══ live-visitors pill: repositioned + glow; rating badge glow ═══ */
.live-visitors{
  top:132px !important; right:158px !important;
  box-shadow:
    0 0 26px rgba(0,140,255,.50),
    0 0 60px rgba(0,102,255,.22),
    0 8px 22px rgba(4,12,28,.35) !important;
}
.rating-float{
  box-shadow:
    0 0 26px rgba(0,140,255,.45),
    0 0 60px rgba(0,102,255,.20),
    var(--shadow-lg) !important;
}
@media (max-width:1280px){ .live-visitors{ right:70px !important; top:120px !important; } }
@media (max-width:920px){ .live-visitors{ right:14px !important; top:104px !important; } }

/* ═══ SEARCH CARD — pure-white pass ═══ */
/* red-marked rows: pure white */
.search-tabs{ background:#FFFFFF !important; }
.sp-top, .sp-top-wrap, .sp-capsule{ background:#FFFFFF !important; }
.sf-swap{ background:#FFFFFF !important; }
.search-tags .tag{ background:#FFFFFF !important; }
/* everything else: noticeably whiter than before */
.search-box{ background:rgba(255,255,255,.985) !important; }
.spanel{ background:#FFFFFF; }
.sp-fields{ background:#FBFCFE !important; }
.sf:focus-within{ background:#FFFFFF !important; }
.search-tags{ background:#F8FAFD !important; }
/* keep the hairlines soft so the white doesn't flatten */
.sp-fields{ border-top-color:rgba(140,170,210,.16) !important; }
.sf{ border-right-color:rgba(140,170,210,.16) !important; }

/* ═══ RACAI SECTION LAYOUT — columns pulled toward centre ═══ */
.vai-inner{
  display:grid;
  grid-template-columns:minmax(0,560px) minmax(0,560px);
  justify-content:center;
  gap:64px;
  max-width:1220px;
  margin:0 auto;
}
/* left column rides right into the green alignment */
.vai-left{ max-width:560px; }
/* chat: a bit larger and pulled left toward the text */
.vai-chat{
  max-width:560px; width:100%;
  height:500px;
  justify-self:start;
}
.chat-body{ min-height:0; }
@media (max-width:1200px){
  .vai-inner{ grid-template-columns:1fr; gap:44px; max-width:640px; }
  .vai-chat{ justify-self:center; height:460px; }
}

/* ═══ RACAI SECTION v2 — wider pair shifted left, two-line headline,
      taller chat aligned flush ═══ */
.vai-inner{
  grid-template-columns:minmax(0,600px) minmax(0,600px);
  gap:56px;
  max-width:1280px;
}
.vai-h2.vai-h2-two{
  font-size:clamp(30px,3.4vw,46px);
  line-height:1.06; margin-bottom:14px;
}
.vai-p{ font-size:14.5px; max-width:520px; }
.vai-feat{ padding:13px 15px; }
.vai-feat-ico{ width:42px; height:42px; min-width:42px; font-size:18px; }
.vai-feat-title{ font-size:14px; }
.vai-feat-desc{ font-size:12.5px; }
/* chat: bigger like the white mark, flush to its column's left edge */
.vai-chat{
  max-width:600px;
  height:620px;
  justify-self:start;
}
@media (max-width:1320px){
  .vai-inner{ grid-template-columns:minmax(0,540px) minmax(0,540px); gap:44px; }
  .vai-chat{ height:560px; }
}
@media (max-width:1200px){
  .vai-inner{ grid-template-columns:1fr; max-width:640px; }
  .vai-chat{ justify-self:center; height:500px; }
}

/* ═══ RACAI SECTION v3 — chat spans the red lines; hero-twin bot ═══ */

/* chat stretches to exactly match the text column's full height
   (top of the badge to the bottom of the stats row) */
.vai-inner{ align-items:stretch; }
.vai-chat{ height:auto; align-self:stretch; min-height:520px; }

/* the section bot: exact hero twin — same size, same life, clickable */
.racbot-sec{
  position:absolute; right:56px; bottom:34px; z-index:3;
  width:112px; height:154px; cursor:pointer; opacity:1;
  pointer-events:auto; perspective:640px;
}
.racbot-sec::before, .racbot-sec::after{ content:none !important; }
.racbot-sec .racbot-bubble{ bottom:118px; right:8px; }
@media (max-width:1200px){
  .racbot-sec{ display:none; }   /* stacked layout: keep it clean */
  .vai-chat{ min-height:480px; }
}

/* ═══ BOOKING MODAL — payment step ═══ */
.bk-pay{
  margin:16px 0 14px; padding:15px 16px; border-radius:14px;
  background:#F6F9FD; border:1px solid rgba(140,170,210,.28);
}
.bk-pay-head{ font-weight:800; font-size:13.5px; color:#0A1526; margin-bottom:11px; }
.bk-pay-head span{ font-weight:600; color:#7C8B9D; font-size:12px; }
.bk-pay-amt{ display:flex; gap:16px; align-items:center; flex-wrap:wrap; margin-bottom:12px; }
.bk-radio{ display:inline-flex; align-items:center; gap:7px; font-size:13px; font-weight:700; color:#33475B; cursor:pointer; }
.bk-radio input{ accent-color:#0066FF; width:15px; height:15px; }
#bk_amount{ width:140px; padding:8px 12px; border:1.5px solid rgba(140,170,210,.4); border-radius:10px; font-family:inherit; font-size:13.5px; }
.bk-pm-row{ display:flex; gap:10px; flex-wrap:wrap; }
.bk-pm{
  flex:1 1 0; min-width:110px; padding:11px 10px; border-radius:12px; cursor:pointer;
  border:2px solid rgba(140,170,210,.35); background:#fff;
  font-family:'Cabinet Grotesk',sans-serif; font-weight:900; font-size:14px;
  color:var(--pmc,#0066FF); letter-spacing:.01em;
  transition:border-color .18s, box-shadow .18s, transform .18s;
}
.bk-pm:hover{ transform:translateY(-1px); border-color:var(--pmc); }
.bk-pm.on{
  border-color:var(--pmc);
  box-shadow:0 0 0 3px color-mix(in srgb, var(--pmc) 18%, transparent), 0 6px 16px rgba(8,20,40,.10);
}
.bk-pm-detail{
  margin-top:11px; padding:12px 14px; border-radius:12px;
  background:#fff; border:1.5px dashed rgba(140,170,210,.5);
}
.bk-pm-num{ font-weight:900; font-size:15px; color:#0A1526; line-height:1.55; }
.bk-pm-note{ margin-top:6px; font-size:12.5px; color:#5B6B7F; line-height:1.6; }
.bk-pay .bk-row{ margin-top:11px; display:flex; gap:12px; }
#bk_shot{ font-size:12.5px; padding:8px 0; }
.bk-pay-note{ margin-top:10px; font-size:12px; color:#7C8B9D; line-height:1.55; }
@media (max-width:560px){ .bk-pay .bk-row{ flex-direction:column; } }

/* ═══ Tailor-section toggle: use each country's own theme colour ═══
      (CSS expected --cp-primary; country pages define --cp) */
.country-page .cpz-mode button.on{
  background:var(--cp, var(--azure));
}

/* ═══ custom cursor above every dropdown; native pointer inside them ═══ */
#cursor{ z-index:2147483000 !important; }
#cursor-ring{ z-index:2147482999 !important; }
/* group state for the travellers Apply button */
.pax-apply.pax-group{ background:linear-gradient(135deg,#D33,#A31212); }

/* ═══ NATIVE CURSOR ON INTERACTIVE ELEMENTS ═══
      Buttons, links and fields show the regular pointer;
      the plane cursor lives everywhere else. */
a, button, [onclick], [role="button"], label, select,
.btn-book, .pax-apply, .bk-pm, .tag, .cf-btn, .pkgm-book{
  cursor:pointer !important;
}
input, textarea{ cursor:text !important; }

/* hide the plane while the pointer is on any of them */
body:has(a:hover, button:hover, [onclick]:hover, [role="button"]:hover,
         label:hover, select:hover, input:hover, textarea:hover) #cursor,
body:has(a:hover, button:hover, [onclick]:hover, [role="button"]:hover,
         label:hover, select:hover, input:hover, textarea:hover) #cursor-ring{
  opacity:0 !important;
  transition:opacity .12s;
}

/* ═══ PACKAGE CARDS — locked footer alignment (everywhere) ═══
      Cards in a row are equal height; the price + Book Now footer
      is pinned to the bottom regardless of how much text sits above. */
.tc{ display:flex; flex-direction:column; }
.tc-body{ display:flex; flex-direction:column; flex:1 1 auto; }
.tc-foot{ margin-top:auto; }
.tc-highlights{ margin-bottom:14px; }

/* ═══ Popular Packages: slightly smaller so the section fits one screen ═══ */
#tours .tours-grid{ gap:22px; }
#tours .tc-img{ height:196px; }
#tours .tc-body{ padding:17px 18px 15px; }
#tours .tc-title{ font-size:18px; margin-bottom:8px; }
#tours .tc-loc{ margin-bottom:6px; }
#tours .tc-rating{ margin-bottom:8px; }
#tours .tc-hl{ padding:3px 9px; font-size:10.5px; }
#tours .tc-highlights{ gap:5px; margin-bottom:12px; }
#tours .tc-foot{ padding-top:12px; }
#tours .tc-pr{ font-size:20px; }
#tours .btn-book{ padding:10px 20px; font-size:13.5px; }

/* field nudge when a required search input is empty */
.shake{ animation:rtShake .5s ease; }
@keyframes rtShake{
  0%,100%{ transform:translateX(0); }
  20%,60%{ transform:translateX(-6px); }
  40%,80%{ transform:translateX(6px); }
}

/* ═══════════════ MOBILE PASS 1 — HERO + SEARCH + STATS ═══════════════
      Everything below lives inside max-width media queries only.
      Desktop is untouched by definition. */
@media (max-width:920px){

  /* ── Row 1: badge and live-viewers pill share one line ── */
  .hero-pill{
    font-size:9.5px; padding:5px 10px; letter-spacing:.08em;
    margin-bottom:12px; max-width:62vw;
  }
  .hero-pill-dot{ width:6px; height:6px; }
  .live-visitors{
    top:98px !important; right:12px !important; left:auto !important;
    transform:none !important;
    padding:5px 10px !important; font-size:10.5px !important;
    box-shadow:0 0 16px rgba(0,140,255,.45), 0 4px 12px rgba(4,12,28,.3) !important;
  }
  .lv-label{ font-size:10.5px; }

  /* ── headline first, then a small centred globe ── */
  .hero-content{ padding-top:96px; }
  .hero-left{ order:1; }
  .hero-right{ order:2; align-self:center; width:100%; margin-top:4px; }
  .globe-stage{
    max-width:230px; margin:0 auto;
    transform:none !important;
  }
  .rating-float{
    left:50% !important; right:auto !important; bottom:-8px !important;
    transform:translateX(-50%) scale(.88) !important;
    padding:10px 14px;
  }
  .hero-scroll{ display:none !important; }

  /* ── search card: compact, booking.com-style stack ── */
  .search-center{ margin-top:10px !important; padding:0 10px !important; }
  .search-box{ border-radius:20px; }
  .search-tabs{ padding:4px 6px 0; gap:2px; }
  .search-tabs .stab{ font-size:12px; padding:9px 10px; }
  .sp-top{ padding:8px 10px; }
  .sp-top .cap-btn, .sp-capsule button{ font-size:12px; padding:7px 12px; }
  .sp-fields{
    display:flex !important; flex-direction:column; gap:8px;
    padding:12px 12px 12px !important;
    border-radius:0 0 20px 20px;
  }
  .sf{
    width:100% !important; border-right:none !important;
    border:1.5px solid rgba(140,170,210,.35) !important;
    border-radius:12px !important;
    padding:9px 13px !important;
    background:#fff !important;
  }
  .sf label{ font-size:9.5px; letter-spacing:.09em; }
  .sf input, .sf select, .sf .sf-val{ font-size:14.5px; }
  .sf-swap{ display:none !important; }        /* stacked fields don't swap sideways */
  .search-go{
    width:100% !important; justify-content:center;
    padding:14px !important; border-radius:12px !important;
    font-size:15px; margin-top:2px;
  }
  .search-tags{ display:none !important; }     /* Popular strip hidden on phones */

  /* ── 15K+ stats bar: tight two-row grid ── */
  .stats-bar{ padding:0 14px; }
  .stats-inner{
    display:grid !important; grid-template-columns:repeat(3,1fr);
    gap:0; padding:6px 0;
  }
  .stat-cell{ padding:10px 4px !important; text-align:center; border:none !important; }
  .stat-n{ font-size:17px !important; }
  .stat-l{ font-size:8.5px !important; letter-spacing:.06em; }
}

/* ═══ MOBILE: bring the globe back (original design hid the column) ═══ */
@media (max-width:920px){
  .hero-right{ display:block !important; }
  .globe-stage{ aspect-ratio:1/1; }
  .globe-stage canvas{ width:100% !important; height:100% !important; }
}

/* ═══════════ MOBILE PASS 2 — designer polish of the first screen ═══════════ */
@media (max-width:920px){

  /* 1 · badge + live pill genuinely share the line, both fully readable */
  .hero-pill{
    font-size:8.5px; letter-spacing:.05em; padding:5px 9px;
    white-space:nowrap; max-width:none; margin-bottom:14px;
  }
  .live-visitors{
    top:100px !important; padding:4px 9px !important;
    white-space:nowrap;
  }
  .lv-label{ font-size:0; }                 /* long label swapped for a short one */
  .lv-label::after{ content:'exploring now'; font-size:10px; }

  /* 2 · hero CTAs: slimmer, tighter rhythm */
  .hero-sub{ margin-bottom:18px; font-size:14.5px; line-height:1.6; }
  .hero-actions{ margin-bottom:16px; gap:10px; }
  .btn-hero-primary, .btn-hero-secondary{
    padding:13px 18px; font-size:14.5px; border-radius:14px;
  }
  .btn-hero-secondary .play-icon{ width:30px; height:30px; }

  /* 3 · KPI row: one compact line of four instead of a tall 2×2 */
  .hero-kpis{
    display:grid !important; grid-template-columns:repeat(4,1fr);
    gap:8px; margin-top:20px; padding-top:16px;
  }
  .kpi-val{ font-size:19px !important; }
  .kpi-lbl{ font-size:7.5px !important; letter-spacing:.05em; }

  /* 4 · RacBot: smaller, stepped left of the WhatsApp bubble, quieter */
  .search-box > .racbot{
    right:20% !important; top:-96px !important;
    transform:scale(.58) !important; transform-origin:100% 100% !important;
  }
  .racbot-bubble{ min-width:0; max-width:150px; font-size:10.5px; padding:8px 11px; bottom:104px; }

  /* 5 · tabs: one line, thumb-scrollable — the booking.com pattern */
  .search-tabs{
    flex-wrap:nowrap !important; overflow-x:auto !important;
    -webkit-overflow-scrolling:touch; scrollbar-width:none;
  }
  .search-tabs::-webkit-scrollbar{ display:none; }
  .search-tabs > *{ flex:0 0 auto; }

  /* 6 · trip-type strip: one scrollable line, no orphaned wrap */
  .sp-top, .sp-capsule{
    flex-wrap:nowrap !important; overflow-x:auto !important;
    -webkit-overflow-scrolling:touch; scrollbar-width:none;
    gap:8px; padding:8px 10px 4px;
  }
  .sp-top::-webkit-scrollbar, .sp-capsule::-webkit-scrollbar{ display:none; }
  .sp-top > *, .sp-capsule > *{ flex:0 0 auto; }

  /* 7 · field boxes: equal heights; departure + return share one row */
  .sf{ min-height:56px; display:flex; flex-direction:column; justify-content:center; }
  .sf input{ min-height:20px; }
  .sp-fields{ flex-direction:row !important; flex-wrap:wrap !important; }
  .sp-fields .sf{ flex:1 1 100%; }
  .sp-fields .sf:has(input[type="date"]){ flex:1 1 calc(50% - 4px); }
  .sp-fields .search-go{ flex:1 1 100%; }

  /* 8 · stats bar: shave the leftover air */
  .stat-cell{ padding:8px 4px !important; }
}

/* very small phones: the badge pair still fits */
@media (max-width:380px){
  .hero-pill{ font-size:7.5px; padding:4px 7px; }
  .live-visitors{ padding:3px 7px !important; }
  .lv-label::after{ font-size:9px; }
  .kpi-val{ font-size:17px !important; }
}

/* ═══ MOBILE: globe slots between the headline and the buttons ═══
      The left column dissolves (display:contents) so its pieces and
      the globe can be ordered as one column: badge → headline →
      paragraph → GLOBE → buttons → KPI row. */
@media (max-width:920px){
  .hero-content{ display:flex; flex-direction:column; }
  .hero-left{ display:contents; }
  .hero-pill{ order:1; align-self:flex-start; }
  .hero-h1{ order:2; }
  .hero-sub{ order:3; }
  .hero-right{ order:4; margin:2px 0 14px; }
  .hero-actions{ order:5; }
  .hero-kpis{ order:6; }
  .rating-float{ bottom:-4px !important; }
}

/* ═══════════ MOBILE PASS 3 — gaps, KPIs, robot anchor, trip buttons ═══════════ */
@media (max-width:920px){

  /* 1 · close the void: headline block hugs the globe */
  .hero-h1.hero-h1-two{ margin-bottom:8px; }
  .hero-sub{ margin-bottom:4px; }
  .hero-right{ margin:-18px 0 10px; }

  /* 2 · KPI row: out-rank the old 2×2 rule; slightly larger, zero waste */
  .hero-content .hero-left .hero-kpis,
  .hero-kpis{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:6px !important;
    margin-top:10px !important; padding-top:14px !important;
  }
  .hero-content .kpi-val, .kpi-val{ font-size:21px !important; }
  .hero-content .kpi-lbl, .kpi-lbl{ font-size:8px !important; letter-spacing:.05em; line-height:1.35; }

  /* 3 · RacBot: feet ON the card's top outline, never inside it */
  .search-box > .racbot{
    top:auto !important;
    bottom:calc(100% - 10px) !important;
    right:16% !important;
    transform:scale(.6) !important;
    transform-origin:50% 100% !important;
  }

  /* 4 · trip-type controls: clean segmented bar, nothing clipped */
  .sp-top{
    display:flex !important; flex-wrap:wrap !important;
    overflow:visible !important; gap:8px; padding:10px 12px 2px;
  }
  .sp-capsule{
    flex:1 1 100%; width:100%;
    display:grid !important; grid-template-columns:repeat(3,1fr);
    overflow:visible !important; gap:0;
    background:#F1F5FB; border-radius:12px; padding:3px;
  }
  .sp-capsule button{
    width:100%; font-size:12.5px !important; padding:9px 4px !important;
    border-radius:10px !important; white-space:nowrap;
  }
  .sp-top > label, .sp-top .sp-nonstop{
    flex:1 1 100%; justify-content:center; display:flex;
    font-size:13px; padding:2px 0 4px;
  }
}

/* ═══════════ MOBILE PASS 4 — KPI alignment + card bottom clearance ═══════════ */
@media (max-width:920px){

  /* 1 · KPI row: four clean centred columns on one horizontal line */
  .hero-content .hero-left .hero-kpis, .hero-kpis{
    grid-template-columns:repeat(4, minmax(0,1fr)) !important;
    gap:4px !important; align-items:start;
  }
  .hero-kpis > *{ text-align:center; min-width:0; }
  .hero-content .kpi-val, .kpi-val{ font-size:19px !important; white-space:nowrap; }
  .hero-content .kpi-lbl, .kpi-lbl{ font-size:7.5px !important; }

  /* 2 · robot: clear of the stats, bubble retired on phones */
  .search-box > .racbot{ right:8% !important; transform:scale(.54) !important; }
  .racbot-bubble{ display:none !important; }

  /* 3 · search card gets its floor back — clear space above the black bar */
  .search-center{ padding-bottom:26px !important; }
  .sp-fields{ padding-bottom:14px !important; }
  .search-go{ margin-bottom:2px; }
  .stats-bar{ border-top:none; }
}

/* ═══ MOBILE: search card corners — one modest radius everywhere ═══ */
@media (max-width:920px){
  .search-box{ border-radius:14px !important; }
  .search-tabs{ border-radius:14px 14px 0 0 !important; }
  .sp-fields{ border-radius:0 0 14px 14px !important; }
  .sp-top, .spanel{ border-radius:0 !important; }
}

/* ═══════════ MOBILE PASS 5 — guaranteed corners + destinations bento ═══════════ */
@media (max-width:920px){

  /* corners: clip the card itself to one uniform radius — nothing
     inside can poke out square (dropdowns are body-portaled, unaffected) */
  .search-box{ clip-path:inset(0 round 14px); }

  /* ── Featured Destinations: phone bento, 4-5 cards per screen ── */
  .dest-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    grid-template-rows:none !important;
    grid-auto-rows:112px !important;
    grid-auto-flow:dense;
    gap:8px !important;
  }
  .dest-grid .dc{ grid-column:auto !important; grid-row:auto !important; }
  .dest-grid .dc:nth-child(1){ grid-column:1 / -1 !important; }          /* wide opener */
  .dest-grid .dc:nth-child(2){ grid-row:span 2 !important; }             /* tall left   */
  .dest-grid .dc:nth-child(5){ grid-column:1 / -1 !important; }          /* wide closer */
  .dc{ border-radius:14px; }
  .dc-name{ font-size:15px; }
  .dc-price{ font-size:12px; }
  .dc-tag{ font-size:9px; padding:3px 8px; top:8px; right:8px; }
  .section#destinations .sec-h2{ font-size:26px; }
  .section#destinations .sec-p{ font-size:13px; }
}

/* ═══════════ MOBILE PASS 6 — robot un-clipped + calm compact bento ═══════════ */
@media (max-width:920px){

  /* the corner clip was swallowing the robot (he's a child of the card).
     Corners now come from the panel wrapper instead — robot roams free. */
  .search-box{ clip-path:none !important; }
  .spanel{ border-radius:0 0 14px 14px !important; overflow:hidden; }
  .search-box > .racbot{
    transform:scale(.58) !important;
    bottom:calc(100% - 8px) !important;
    z-index:7;
  }

  /* bento, simplified and smaller: one wide opener + a tidy 2×2.
     Uniform heights end the overlapping chaos. */
  .dest-grid{
    grid-auto-flow:row !important;
    grid-auto-rows:126px !important;
    gap:8px !important;
  }
  .dest-grid .dc:nth-child(2){ grid-row:auto !important; }
  .dest-grid .dc:nth-child(5){ grid-column:auto !important; }
  .dest-grid .dc:nth-child(1){ grid-column:1 / -1 !important; }
  .dc{ min-height:0; }
  .dc-name{ font-size:14px !important; }
  .dc-price{ font-size:11px !important; }
  .dc-tag{ font-size:8.5px !important; padding:3px 7px !important; }
  .dc *{ font-size:min(1em, 13px); }   /* any oversized inner labels calm down */
}

/* ═══ MOBILE: destinations as a snap carousel (the labels-overhang
      design needs full-height cards — so we go sideways, not down) ═══ */
@media (max-width:920px){
  .dest-grid{
    display:flex !important;
    grid-auto-rows:unset !important;
    gap:10px !important;
    overflow-x:auto !important;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:2px 2px 6px;
  }
  .dest-grid::-webkit-scrollbar{ display:none; }
  .dest-grid .dc,
  .dest-grid .dc:nth-child(1),
  .dest-grid .dc:nth-child(2),
  .dest-grid .dc:nth-child(5){
    grid-column:unset !important; grid-row:unset !important;
    flex:0 0 74% !important; max-width:74%;
    height:300px !important; min-height:300px;
    scroll-snap-align:center;
    border-radius:16px;
  }
  .dc *{ font-size:revert !important; }        /* undo the earlier cap */
  .dc-name{ font-size:22px !important; }
  .dc-price{ font-size:14px !important; }
  .dc-tag{ font-size:10px !important; padding:4px 10px !important; }
  .dest-viewall{ margin-top:12px; }
}

/* ═══ MOBILE: Popular Packages as a modern 2-up shop grid ═══ */
@media (max-width:920px){

  /* category filters: one swipeable chip line */
  #tours .tours-filters, #tours .filter-row{
    display:flex !important; flex-wrap:nowrap !important;
    overflow-x:auto !important; -webkit-overflow-scrolling:touch;
    scrollbar-width:none; gap:8px; padding-bottom:6px;
  }
  #tours .tours-filters::-webkit-scrollbar, #tours .filter-row::-webkit-scrollbar{ display:none; }
  #tours .tours-filters > *, #tours .filter-row > *{ flex:0 0 auto; }

  /* the grid: two compact cards per row */
  #tours .tours-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:10px !important;
  }
  #tours .tc{ border-radius:14px; }
  #tours .tc-img{ height:104px !important; }
  #tours .tc-body{ padding:10px 11px 11px !important; }
  #tours .tc-loc{ font-size:9.5px !important; margin-bottom:4px !important; }
  #tours .tc-title{
    font-size:13.5px !important; line-height:1.25 !important;
    margin-bottom:5px !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
    overflow:hidden; min-height:2.5em;
  }
  #tours .tc-rating{ margin-bottom:6px !important; font-size:10px; }
  #tours .tc-stars{ font-size:10px; }
  #tours .tc-rv, #tours .tc-rn{ font-size:10px !important; }
  #tours .tc-highlights{ display:none !important; }     /* chips are desktop luxury */
  #tours .tc-dur{ font-size:8.5px; padding:3px 7px; }
  #tours .tc-b{ font-size:8.5px !important; padding:3px 7px !important; }
  #tours .tc-wish{ width:26px; height:26px; font-size:13px; }

  /* footer: price stacked, thumb-wide Book Now beneath */
  #tours .tc-foot{
    flex-direction:column !important; align-items:stretch !important;
    gap:7px; padding-top:9px !important;
  }
  #tours .tc-pr-lbl{ font-size:8.5px !important; }
  #tours .tc-pr{ font-size:15px !important; }
  #tours .tc-pr sub{ font-size:9px; }
  #tours .tc-pr-old{ font-size:10.5px; }
  #tours .btn-book{
    width:100%; padding:9px 10px !important; font-size:12.5px !important;
    border-radius:10px !important; text-align:center;
  }
}

/* ═══ MOBILE: packages grid — exactly 4 cards, fixed geometry ═══ */
@media (max-width:920px){

  /* fixed card height: every card identical, button pinned at the base */
  #tours .tc{ height:288px !important; }
  #tours .tc-loc{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  #tours .tc-pr-old{ display:none !important; }       /* strike-price is clutter at this size */
  #tours .tc-pr{ white-space:nowrap; }
  #tours .tc .tc-title{ color:var(--ink) !important; } /* no sticky tap-hover blue */

  /* exactly two rows visible = 4 cards; filtering reflows into the
     same four slots; "More Packages" below leads to the rest */
  #tours .tours-grid{
    max-height:calc(288px * 2 + 10px);
    overflow:hidden;
    align-content:start;
  }
}

/* ═══ MOBILE: RacAi section — compact intro, 2×2 features, roomier chat ═══ */
@media (max-width:920px){
  .visa-ai-section{ padding:44px 14px 48px !important; }
  .vai-h2.vai-h2-two{ font-size:26px !important; margin-bottom:10px !important; }
  .vai-p{
    font-size:13px !important; line-height:1.55 !important;
    margin-bottom:18px !important;
    display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
  }
  .vai-badge{ font-size:10px; padding:6px 12px; }

  /* features: 2×2 tiles, icon + title only */
  .vai-features{
    display:grid !important; grid-template-columns:1fr 1fr !important;
    gap:8px !important;
  }
  .vai-feat{
    flex-direction:column !important; align-items:center !important;
    text-align:center; gap:7px !important; padding:12px 8px !important;
  }
  .vai-feat-ico{ width:34px !important; height:34px !important; min-width:34px !important; font-size:16px !important; }
  .vai-feat-title{ font-size:11.5px !important; line-height:1.3 !important; }
  .vai-feat-desc{ display:none !important; }        /* less text, as ordered */

  /* stats strip: one tight line */
  .vai-stats-row{ gap:8px !important; margin-top:16px !important; justify-content:space-between; }
  .vai-stat-n{ font-size:15px !important; }
  .vai-stat-l{ font-size:7px !important; white-space:nowrap; letter-spacing:.04em; }

  /* the chat: taller and finger-friendly */
  .vai-chat{ height:min(560px, 74vh) !important; min-height:440px !important; }
  .chat-body{ font-size:14px !important; padding:14px 13px !important; }
  .chat-input{ font-size:16px !important; padding:12px 14px !important; } /* 16px stops iOS auto-zoom */
  .chat-send{ width:44px !important; height:44px !important; }
  .chat-sug, .chat-body .sug{ font-size:12px; padding:7px 12px; }
}

/* ═══ MOBILE: Trip Builder — compact steps, tight estimate, no dead weight ═══ */
@media (max-width:920px){
  #configurator .sec-h2{ font-size:26px !important; }
  #configurator .sec-p{
    font-size:13px !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  #configurator .configurator{ padding:0 !important; }
  .config-grid{ grid-template-columns:1fr !important; gap:14px !important; }

  /* steps: tighter cards, smaller titles and chips */
  .config-step{ gap:10px !important; }
  .cs{ padding:14px 13px !important; border-radius:14px !important; }
  .cs-num{ width:22px !important; height:22px !important; font-size:11px !important; }
  .cs-title{ font-size:13px !important; }
  .cs-options{ gap:6px !important; }
  .cs-opt{ padding:6px 11px !important; font-size:11.5px !important; }
  .tb-destbox{ padding:9px 11px !important; }
  .tb-destbox input{ font-size:16px !important; }   /* stops iOS zoom */
  .cs-slider-val{ font-size:12px !important; }
  .cs-slider-labels{ font-size:9.5px !important; }
  .pax-row{ padding:7px 0 !important; }
  .pax-t{ font-size:12.5px !important; }
  .pax-s{ font-size:9.5px !important; }
  .stepper button{ width:28px !important; height:28px !important; }

  /* estimate panel: compact rows, full-width CTA */
  .tb-right-stick{ position:static !important; }
  .price-panel{ padding:16px 14px !important; border-radius:14px !important; }
  .pp-title{ font-size:13px !important; margin-bottom:10px !important; }
  .pp-line{ padding:5px 0 !important; }
  .pp-line-label{ font-size:11.5px !important; }
  .pp-line-val{ font-size:11.5px !important; }
  .pp-total{ margin-top:10px !important; padding-top:10px !important; }
  .pp-total-label{ font-size:11px !important; }
  .pp-total-val{ font-size:20px !important; }
  .btn-config{ width:100% !important; padding:13px !important; font-size:14px !important; border-radius:12px !important; }

  /* the map is a desktop luxury — phones lose it, saving a full screen */
  .tb-map-card{ display:none !important; }
}

/* ═══ MOBILE: Trip Builder in ONE SCREEN — paired steps, zero fat ═══ */
@media (max-width:920px){

  /* steps 1-4 pair up two-per-row; travellers (5) spans full width */
  .config-step{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .config-step .cs:nth-child(5){ grid-column:1 / -1 !important; }

  /* strip every redundant pixel inside a step */
  .cs{ padding:10px 9px !important; }
  .cs-num{ display:none !important; }               /* numbers say nothing chips don't */
  .cs-title{ font-size:11px !important; margin-bottom:7px !important; letter-spacing:.02em; }
  .cs-options{ gap:5px !important; }
  .cs-opt{ padding:5px 9px !important; font-size:10.5px !important; }
  .tb-destbox{ padding:6px 9px !important; }
  .tb-dest-ic{ width:16px !important; }
  .cs-slider-labels{ display:none !important; }     /* the value chip already says it */
  .cs-slider-val{ font-size:11px !important; }
  .cs input[type=range]{ margin:4px 0 0 !important; }

  /* travellers: three lean rows */
  .pax-row{ padding:3px 0 !important; }
  .pax-s{ display:none !important; }                /* "12+ years" etc: understood */
  .pax-t{ font-size:11.5px !important; }
  .stepper{ gap:8px !important; }
  .stepper button{ width:24px !important; height:24px !important; font-size:13px !important; }
  .stepper span{ font-size:12.5px !important; min-width:14px; }

  /* estimate: title, lean lines, bold total, CTA */
  .price-panel{ padding:12px 12px 13px !important; }
  .pp-title{ font-size:11.5px !important; margin-bottom:6px !important; }
  .pp-line{ padding:2.5px 0 !important; }
  .pp-line-label, .pp-line-val{ font-size:10.5px !important; }
  .pp-total{ margin-top:7px !important; padding-top:7px !important; }
  .pp-total-val{ font-size:18px !important; }
  .btn-config{ padding:11px !important; font-size:13.5px !important; margin-top:8px !important; }

  /* section chrome slimmed to match */
  #configurator.section{ padding-top:40px !important; padding-bottom:40px !important; }
  #configurator .sec-head{ margin-bottom:16px !important; }
}

/* ═══ MOBILE: Why Ractrip — 2×2 tiles, RacAi-features style ═══ */
@media (max-width:920px){
  #why .sec-h2{ font-size:26px !important; }
  #why .sec-p{
    font-size:13px !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  #why .sec-head{ margin-bottom:16px !important; }
  .why-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .wc{
    padding:14px 10px !important; border-radius:14px !important;
    text-align:center;
    display:flex; flex-direction:column; align-items:center; gap:7px;
  }
  .wc-num{ display:none !important; }        /* 01/02… ornaments: gone */
  .wc-icon{
    width:36px !important; height:36px !important; min-width:36px;
    font-size:17px !important; margin:0 !important;
  }
  .wc-title{ font-size:11.5px !important; line-height:1.3 !important; margin:0 !important; }
  .wc-desc{ display:none !important; }       /* less text, as ordered */
  #why.section{ padding-top:40px !important; padding-bottom:40px !important; }
}

/* ═══ MOBILE: Client Stories — swipe-only story cards ═══ */
@media (max-width:920px){
  .testi-section .sec-h2, .testi-section .sec-title{ font-size:26px !important; }
  .testi-section .sec-head{ margin-bottom:14px !important; }
  .testi-section.section{ padding-top:40px !important; padding-bottom:40px !important; }

  /* the track becomes a snap slider — left/right only */
  .testi-track{
    display:flex !important;
    grid-template-columns:none !important;
    gap:12px !important;
    overflow-x:auto !important;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:4px 2px 10px;
  }
  .testi-track::-webkit-scrollbar{ display:none; }

  /* a unique story-card look: deep-navy ticket with an oversized quote mark */
  .tcard-t{
    flex:0 0 82% !important; max-width:82%;
    scroll-snap-align:center;
    position:relative;
    background:linear-gradient(160deg,#0E1D38,#0A1526) !important;
    border:1px solid rgba(110,168,255,.22) !important;
    border-radius:18px !important;
    padding:20px 18px 16px !important;
    box-shadow:0 14px 30px rgba(4,12,28,.35) !important;
    overflow:hidden;
  }
  .tcard-t::before{
    content:'\201C';
    position:absolute; top:-14px; right:6px;
    font-family:'Editorial',Georgia,serif;
    font-size:110px; line-height:1;
    color:rgba(110,168,255,.16);
    pointer-events:none;
  }
  .tcard-t::after{
    content:''; position:absolute; inset:auto 0 0 0; height:3px;
    background:linear-gradient(90deg,#0066FF,#59C2FF);
  }
  .tcard-quote, .tcard-text{
    color:#DCE7F5 !important; font-size:13px !important; line-height:1.65 !important;
    display:-webkit-box; -webkit-line-clamp:5; -webkit-box-orient:vertical; overflow:hidden;
    margin-bottom:12px !important;
  }
  .t-stars{ font-size:11px !important; margin-bottom:8px !important; }
  .tcard-author{ gap:9px !important; }
  .t-av{ width:34px !important; height:34px !important; border:2px solid rgba(110,168,255,.4); }
  .t-name{ color:#fff !important; font-size:12.5px !important; }
  .t-detail{ color:#8FA6C4 !important; font-size:10px !important; }
  .t-badge{ font-size:8.5px !important; padding:3px 8px !important; }
}

/* ═══ MOBILE: Client Stories v2 — glowing deck, swipe throws cards out ═══ */
@media (max-width:920px){

  /* the stage: dark, with a blue aura glowing behind the deck */
  .testi-section{
    background:
      radial-gradient(70% 46% at 50% 34%, rgba(0,102,255,.28), transparent 72%),
      radial-gradient(48% 30% at 78% 66%, rgba(89,194,255,.14), transparent 70%),
      linear-gradient(180deg,#081120,#0A1526) !important;
  }
  .testi-section .sec-eyebrow{ color:#59C2FF !important; }
  .testi-section .sec-h2, .testi-section .sec-title{ color:#fff !important; }
  .testi-section .sec-p{ color:#9FB3CC !important; }

  /* every card wears two sheets beneath it — a 3-card stack at rest */
  .tcard-t{
    box-shadow:
      0 10px 0 -4px #12233F,
      0 20px 0 -8px #0D1B33,
      0 30px 44px rgba(2,8,20,.55) !important;
    margin-bottom:22px;   /* room for the sheets to show */
  }

  /* swipe physics: entering cards rise from the deck, leaving cards
     get thrown out — driven purely by the scroller, no JS */
  @supports (animation-timeline: view()) {
    .testi-track{ perspective:900px; }
    .tcard-t{
      animation:tstack linear both;
      animation-timeline:view(inline);
    }
    @keyframes tstack{
      0%   { transform:translateX(-12%) scale(.88) rotate(2deg); opacity:.55; }
      38%  { transform:none; opacity:1; }
      62%  { transform:none; opacity:1; }
      100% { transform:translateX(16%) translateY(-2%) rotate(-7deg) scale(.92); opacity:0; }
    }
  }
}

/* ═══ MOBILE: Client Stories v3 — deck that works on REAL iPhones ═══
      (no scroll-timeline dependency: overlap + z-order + tilt) ═══ */
@media (max-width:920px){
  .testi-track{
    gap:0 !important;
    padding:14px 8vw 26px !important;
    scroll-padding:0 8vw;
  }
  .tcard-t{
    flex:0 0 84% !important; max-width:84%;
    margin-right:-12% !important;       /* the next card hides UNDERNEATH */
    scroll-snap-align:center;
  }
  /* earlier cards sit on top: swiping pulls the next one out from under */
  .tcard-t:nth-child(1){ z-index:12; }
  .tcard-t:nth-child(2){ z-index:11; }
  .tcard-t:nth-child(3){ z-index:10; }
  .tcard-t:nth-child(4){ z-index:9; }
  .tcard-t:nth-child(5){ z-index:8; }
  .tcard-t:nth-child(6){ z-index:7; }
  .tcard-t:nth-child(7){ z-index:6; }
  .tcard-t:nth-child(8){ z-index:5; }
  .tcard-t:nth-child(9){ z-index:4; }
  .tcard-t:nth-child(10){ z-index:3; }
  /* hand-dealt tilt — the peeking under-card sits at an angle */
  .tcard-t:nth-child(odd){ transform:rotate(-1.4deg); }
  .tcard-t:nth-child(even){ transform:rotate(1.6deg) translateY(4px); }
  .tcard-t:last-child{ margin-right:0 !important; }
}

/* ═══ MOBILE: currency + newsletter + footer — matched to the compact vibe ═══ */
@media (max-width:920px){

  /* ── currency converter: one tight card ── */
  .currency-section{ padding:40px 14px !important; }
  .currency-section .sec-h2{ font-size:26px !important; }
  .currency-section .sec-p{
    font-size:13px !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  .curr-card{ padding:16px 14px !important; border-radius:16px !important; }
  .curr-grid{
    display:grid !important; grid-template-columns:1fr auto 1fr !important;
    gap:8px !important; align-items:end;
  }
  .curr-label{ font-size:9px !important; letter-spacing:.08em; margin-bottom:4px !important; }
  .curr-select{ font-size:12px !important; padding:7px 6px !important; }
  .curr-amount{ font-size:16px !important; padding:8px 8px !important; width:100%; }
  .curr-swap{ width:34px !important; height:34px !important; font-size:15px !important; align-self:center; }
  .curr-rate, .curr-note{ font-size:10.5px !important; margin-top:8px !important; }

  /* ── newsletter: slim signup strip ── */
  .nl-section{ padding:14px 14px 40px !important; }
  .nl-card{ padding:24px 18px !important; border-radius:18px !important; }
  .nl-dots, .nl-circle1, .nl-circle2{ display:none !important; }   /* decor costs space */
  .nl-card h2, .nl-title{ font-size:21px !important; margin-bottom:6px !important; }
  .nl-card p, .nl-sub{
    font-size:12.5px !important; margin-bottom:14px !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  .nl-form{ flex-direction:column !important; gap:8px !important; }
  .nl-form input{ width:100% !important; font-size:16px !important; padding:12px 14px !important; }
  .nl-form button{ width:100% !important; padding:12px !important; font-size:14px !important; }

  /* ── footer: short and sharp ── */
  footer#contact{ padding:36px 16px 20px !important; }
  .footer-grid{
    display:grid !important; grid-template-columns:1fr 1fr !important;
    gap:20px 14px !important;
  }
  .footer-brand{ grid-column:1 / -1 !important; }
  .footer-desc{
    font-size:12px !important; line-height:1.55 !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
    margin-bottom:12px !important;
  }
  .footer-badges{ gap:6px !important; }
  .ft-badge{ font-size:8.5px !important; padding:3px 8px !important; }
  .footer-social{ gap:8px !important; }
  .footer-social a{ width:32px !important; height:32px !important; }
  .footer-col h4{ font-size:11px !important; margin-bottom:8px !important; letter-spacing:.08em; }
  .footer-col a, .footer-col li{ font-size:12px !important; line-height:2 !important; }
  .footer-concern{ margin-top:18px !important; padding-top:14px !important; }
  .footer-concern-inner{ gap:10px !important; }
  .fc-label{ font-size:9px !important; }
  .fc-item{ transform:scale(.9); }
  .fc-name{ font-size:10px !important; }
  .footer-bottom{
    margin-top:16px !important; padding-top:12px !important;
    font-size:10px !important; text-align:center; line-height:1.7;
  }
}

/* newsletter exact-class safety net */
@media (max-width:920px){
  .nl-h2{ font-size:21px !important; margin-bottom:6px !important; }
  .nl-p{ font-size:12.5px !important; margin-bottom:14px !important; }
  .nl-in{ width:100% !important; font-size:16px !important; padding:12px 14px !important; }
  .nl-btn{ width:100% !important; padding:12px !important; font-size:14px !important; }
}

/* ═══ MOBILE: footer link columns hidden, one-line legal, newsletter polish ═══ */
@media (max-width:920px){
  .footer-col{ display:none !important; }              /* Services/Destinations lists: gone */
  .footer-grid{ grid-template-columns:1fr !important; gap:14px !important; }

  .footer-bottom{
    display:flex !important; justify-content:center !important;
    flex-wrap:nowrap !important; gap:0 !important;
  }
  .footer-bottom span:nth-child(2){ display:none !important; }
  .footer-bottom span:first-child{ white-space:nowrap; font-size:9.5px; }

  .nl-in{ border-radius:12px !important; text-align:center; }
  .nl-btn{ border-radius:12px !important; box-shadow:0 6px 16px rgba(2,8,20,.18); }
}

/* ═══ MOBILE: footer columns — hide only Services + Destinations;
      Company and Contact stay, side by side ═══ */
@media (max-width:920px){
  .footer-col{ display:block !important; }              /* undo the blanket hide */
  .footer-col:nth-of-type(1),                            /* Services      */
  .footer-col:nth-of-type(2){ display:none !important; } /* Destinations  */
}

/* ═══ MOBILE: newsletter — input and button as two clearly separate pieces ═══ */
@media (max-width:920px){
  .nl-form{ gap:10px !important; }
  .nl-in{
    background:#fff !important;
    color:#0A1526 !important;
    border:none !important;
    text-align:left !important;
    padding:13px 16px !important;
  }
  .nl-in::placeholder{ color:#8795A6 !important; }
  .nl-btn{
    background:#0A1526 !important;
    color:#fff !important;
    border:none !important;
    font-weight:800;
    box-shadow:0 8px 18px rgba(2,8,20,.28) !important;
  }
}

/* ═══ MOBILE: footer layout, decisively — Company | Contact side by side ═══
      (previous pass used nth-of-type, which miscounts because the brand
      block is also a div — nth-child is deterministic) ═══ */
@media (max-width:920px){
  footer#contact .footer-grid{
    display:grid !important;
    grid-template-columns:1fr 1.2fr !important;
    gap:18px 16px !important;
  }
  footer#contact .footer-grid > *{ display:block !important; grid-column:auto !important; }
  footer#contact .footer-brand{ grid-column:1 / -1 !important; }
  footer#contact .footer-grid > .footer-col:nth-child(2),
  footer#contact .footer-grid > .footer-col:nth-child(3){ display:none !important; }  /* Services + Destinations */
  footer#contact .footer-grid > .footer-col:nth-child(4){ grid-column:1 !important; } /* Company  */
  footer#contact .footer-grid > .footer-col:nth-child(5){ grid-column:2 !important; grid-row:2 !important; } /* Contact */
  footer#contact .footer-col a, footer#contact .footer-col li{ line-height:1.9 !important; }
}

/* ═══ MOBILE: newsletter — kill the capsule wrapper entirely ═══ */
@media (max-width:920px){
  .nl-form{
    background:transparent !important;
    border:none !important;
    border-radius:0 !important;
    overflow:visible !important;
    padding:0 !important;
    box-shadow:none !important;
  }
}

/* ═══ MOBILE: newsletter — matched glass pair ═══ */
@media (max-width:920px){
  .nl-in, .nl-btn{
    width:100% !important;
    height:50px !important;
    padding:0 18px !important;
    border-radius:13px !important;
    font-size:15px !important;
    box-sizing:border-box !important;
    display:flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.14) !important;
    -webkit-backdrop-filter:blur(14px) saturate(150%);
    backdrop-filter:blur(14px) saturate(150%);
    border:1.5px solid rgba(255,255,255,.35) !important;
    color:#fff !important;
    box-shadow:0 8px 22px rgba(2,8,20,.16) !important;
  }
  .nl-in{ text-align:center !important; }
  .nl-in::placeholder{ color:rgba(255,255,255,.75) !important; }
  .nl-btn{ font-weight:800; letter-spacing:.01em; }
  .nl-btn:active{ background:rgba(255,255,255,.26) !important; }
}

/* ═══ MOBILE: newsletter — pixel-exact width lock ═══ */
@media (max-width:920px){
  .nl-form{
    display:flex !important; flex-direction:column !important;
    align-items:stretch !important;
    width:100% !important; max-width:100% !important;
  }
  .nl-in, .nl-btn{
    flex:none !important;
    width:100% !important; min-width:0 !important; max-width:100% !important;
    margin:0 !important;
    -webkit-appearance:none !important; appearance:none !important;
  }
  .nl-in{ margin-bottom:10px !important; }
}

/* ═══════════ MOBILE: HERO v2 — CTAs | globe up top, headline below ═══════════ */
@media (max-width:920px){
  .hero-content{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) 158px !important;
    grid-template-areas:
      "pill pill"
      "actions globe"
      "h1 h1"
      "kpis kpis" !important;
    gap:10px 12px !important;
    align-items:start;
  }
  .hero-left{ display:contents !important; }

  .hero-pill{ grid-area:pill; margin-bottom:2px !important; }

  /* compact CTA stack, left of the globe */
  .hero-actions{
    grid-area:actions;
    display:flex !important; flex-direction:column !important;
    gap:8px !important; margin:6px 0 0 !important;
    align-self:center;
  }
  .btn-hero-primary, .btn-hero-secondary{
    width:100% !important;
    padding:10px 8px !important; font-size:11.5px !important;
    border-radius:11px !important; justify-content:center;
  }
  .btn-hero-secondary .play-icon{ width:20px !important; height:20px !important; }

  /* small globe, top right, with the 4.97 badge under it */
  .hero-right{
    grid-area:globe;
    display:block !important;
    width:158px !important; margin:0 0 40px !important;
    position:relative;
  }
  .globe-stage{ max-width:150px !important; margin:0 !important; }
  .rating-float{
    left:50% !important; right:auto !important;
    bottom:-44px !important;
    transform:translateX(-50%) scale(.7) !important;
    transform-origin:50% 0;
    padding:9px 12px !important;
    white-space:nowrap;
  }

  /* headline takes the stage below; the paragraph retires on phones */
  .hero-h1.hero-h1-two, .hero-h1{
    grid-area:h1;
    margin:2px 0 0 !important;
  }
  .hero-sub{ display:none !important; }

  .hero-kpis{ grid-area:kpis; margin-top:10px !important; }
}

/* ═══════════ MOBILE: HERO v3 — refined per markup ═══════════ */
@media (max-width:920px){

  /* free the badge from the globe container so it can be its own row */
  .hero-right{ display:contents !important; }
  .hero-content{
    grid-template-columns:minmax(0,1fr) 184px !important;
    grid-template-areas:
      "pill pill"
      "actions globe"
      "h1 h1"
      "rating rating"
      "kpis kpis" !important;
    gap:8px 10px !important;
  }

  /* buttons | globe: vertically centred against each other */
  .hero-actions{ grid-area:actions; align-self:center !important; }
  .btn-hero-primary, .btn-hero-secondary{
    padding:9px 6px !important; font-size:10.5px !important;
    border-radius:10px !important;
  }
  .btn-hero-secondary .play-icon{ width:18px !important; height:18px !important; }

  /* globe: a bit larger, pulled left within its column */
  .globe-stage{
    grid-area:globe;
    max-width:176px !important; width:176px !important;
    margin:0 auto 0 0 !important;      /* hug the left of its column */
    align-self:center;
  }

  /* fare pins on the globe: much smaller */
  .gpin-tag{ font-size:7.5px !important; padding:2px 5px !important; border-radius:6px !important; }
  .gpin-dot{ transform:scale(.6); }
  .gpin svg, .gpin-pin{ transform:scale(.62); transform-origin:center bottom; }

  /* review badge: its own centred row right after the headline */
  .rating-float{
    grid-area:rating;
    position:static !important;
    transform:none !important;
    justify-self:center !important;
    margin:2px auto 0 !important;
    padding:8px 13px !important;
    scale:.86;
  }

  /* headline centred, review centred beneath — aligned middles */
  .hero-h1.hero-h1-two, .hero-h1{ text-align:center !important; }
  .hero-pill{ justify-self:start; }
  .hero-kpis{ margin-top:8px !important; }
}

/* mobile: correct pin selectors (the earlier guesses missed) */
@media (max-width:920px){
  .gpin-pin{ width:11px !important; height:15px !important; left:-5.5px !important; top:-15px !important; }
  .gpin-pulse{ width:8px !important; height:8px !important; margin-left:-4px !important; }
  .gpin-fare, .gpin-label{
    font-size:7px !important; padding:1.5px 4px !important;
    border-radius:5px !important; top:-26px !important;
  }
}

/* mobile: the fare chip's real class — properly tiny */
@media (max-width:920px){
  .gpin-chip{
    font-size:7px !important; padding:1.5px 4px !important;
    gap:3px !important; border-radius:5px !important;
    left:8px !important; top:-13px !important;
  }
  .gpin-chip img, .gpin-chip svg{ width:8px !important; height:8px !important; }
}

/* ═══ MOBILE: rating badge — out from behind the globe, into its slot
      between headline and KPIs ═══ */
@media (max-width:920px){
  .hero-content{ position:relative !important; }
  .rating-float{
    position:absolute !important;
    left:50% !important; right:auto !important;
    top:auto !important;
    bottom:66px !important;                       /* just above the KPI row */
    transform:translateX(-50%) scale(.86) !important;
    margin:0 !important;
    z-index:5;
    white-space:nowrap;
  }
  /* carve the slot the badge floats in */
  .hero-kpis{ margin-top:56px !important; }
}
@media (max-width:380px){
  .rating-float{ bottom:72px !important; transform:translateX(-50%) scale(.8) !important; }
}

/* ═══ MOBILE: rating — rebuilt IN the flow, guaranteed placement ═══
      The original badge is welded inside the globe's container and CSS
      cannot re-parent it. So on phones we hide it and render a fresh
      badge as part of the KPI block itself: after headline, before
      the numbers. It physically cannot appear anywhere else. ═══ */
@media (max-width:920px){
  .rating-float{ display:none !important; }
  .hero-kpis{ margin-top:16px !important; }
  .hero-kpis::before{
    content:"★★★★★  4.97 · 4,200+ verified reviews";
    grid-column:1 / -1;
    justify-self:center;
    display:inline-block;
    background:#fff;
    color:#0A1526;
    font-family:'Cabinet Grotesk',sans-serif;
    font-weight:800;
    font-size:12.5px;
    letter-spacing:.01em;
    padding:9px 16px;
    border-radius:999px;
    box-shadow:0 0 22px rgba(0,140,255,.5), 0 8px 18px rgba(4,12,28,.35);
    margin-bottom:16px;
  }
}

/* ═══ MOBILE: rating pill v2 — frosted glass, golden stars ═══ */
@media (max-width:920px){
  .hero-kpis::before{
    content:"★★★★★  4.97 · 4,200+ verified reviews";
    /* glass body: transparent core + blur + white rim + inner frost */
    background:
      linear-gradient(90deg, #FFC24B 0 70px, #FFFFFF 70px);
    -webkit-background-clip:text; background-clip:text;
    color:transparent;
    -webkit-backdrop-filter:blur(16px) saturate(160%);
    backdrop-filter:blur(16px) saturate(160%);
    border:1.5px solid rgba(255,255,255,.38);
    box-shadow:
      inset 0 0 0 200px rgba(255,255,255,.10),
      0 0 24px rgba(0,140,255,.45),
      0 8px 20px rgba(4,12,28,.35);
    font-size:12.5px;
    padding:9px 16px;
  }
}

/* ═══════════ MOBILE: CORPORATE PAGE — compact, grid-first ═══════════ */
@media (max-width:920px){

  /* hero */
  .corp-hero-inner{ padding:84px 16px 40px !important; }
  .corp-hero-inner h1{ font-size:30px !important; line-height:1.12 !important; }
  .corp-hero-inner > p{
    font-size:13px !important;
    display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
  }
  .corp-hero-cta{ flex-direction:column !important; gap:9px !important; }
  .corp-btn-primary, .corp-btn-ghost{ width:100%; text-align:center; padding:12px 14px !important; font-size:13.5px !important; }
  .corp-stats{
    display:grid !important; grid-template-columns:repeat(4, minmax(0,1fr)) !important;
    gap:6px !important; margin-top:20px !important;
  }
  .corp-stat{ text-align:center; padding:0 !important; }
  .corp-stat b{ font-size:16px !important; }
  .corp-stat span{ font-size:7.5px !important; white-space:nowrap; }

  /* shared section chrome */
  .corp-sec{ padding:38px 14px !important; }
  .corp-sec-head h2{ font-size:24px !important; }
  .corp-sec-head p{
    font-size:12.5px !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  .corp-sec-head{ margin-bottom:16px !important; }

  /* WHAT WE HANDLE: 2-across tiles, icon + title only */
  .corp-cards{
    display:grid !important; grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .corp-card{ padding:13px 9px !important; text-align:center; border-radius:14px !important; }
  .corp-card-ic{ width:34px !important; height:34px !important; font-size:16px !important; margin:0 auto 7px !important; }
  .corp-card h3{ font-size:11.5px !important; line-height:1.3 !important; margin:0 !important; }
  .corp-card p{ display:none !important; }

  /* HOW WE DEAL: lean numbered list */
  .corp-steps{ gap:8px !important; }
  .corp-step{ padding:11px 12px !important; gap:11px !important; border-radius:13px !important; }
  .corp-step-n{ font-size:13px !important; min-width:26px !important; }
  .corp-step h4{ font-size:13px !important; margin-bottom:2px !important; }
  .corp-step p{
    font-size:11.5px !important; line-height:1.5 !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }

  /* CORPORATE PACKAGES: the 2×2 */
  .corp-packs{
    display:grid !important; grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .corp-pack{ padding:13px 11px !important; border-radius:14px !important; display:flex; flex-direction:column; }
  .corp-pack h3{ font-size:14px !important; }
  .corp-pack-sub{ font-size:9.5px !important; }
  .corp-pack-list{ display:none !important; }         /* detail lives in the proposal */
  .corp-pack-foot{ flex-direction:column !important; align-items:stretch !important; gap:7px !important; margin-top:10px !important; }
  .corp-pack-price span{ font-size:8.5px !important; }
  .corp-pack-price b{ font-size:14px !important; }
  .corp-btn-sm{ width:100%; padding:8px 10px !important; font-size:11px !important; }
  .corp-note{ font-size:10.5px !important; margin-top:12px !important; }

  /* BUSINESS CLASS: stacked, compact routes */
  .corp-air{ display:flex !important; flex-direction:column !important; gap:18px !important; }
  .corp-air-left h2{ font-size:24px !important; }
  .corp-air-left > p{ font-size:12.5px !important; }
  .corp-air-points li{ font-size:12px !important; padding:4px 0 !important; }
  .corp-routes{ padding:14px 12px !important; }
  .corp-routes-h{ font-size:11px !important; margin-bottom:8px !important; }
  .corp-route{ font-size:11px !important; padding:5px 0 !important; }
  .corp-routes-f{ font-size:9.5px !important; margin-top:8px !important; }

  /* LUXURY HOTELS: 2-across, city + tier only */
  .corp-hotels{
    display:grid !important; grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .corp-hotel{ padding:12px 11px !important; border-radius:13px !important; }
  .corp-hotel-city{ font-size:13px !important; }
  .corp-hotel-tier{ font-size:9.5px !important; }
  .corp-hotel p{ display:none !important; }

  /* PARTNERS: tight 3-across logo grid */
  .corp-partners{
    display:grid !important; grid-template-columns:repeat(3, minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .corp-partner{ padding:10px 6px !important; border-radius:12px !important; }
  .corp-partner img, .corp-partner-mark{ width:34px !important; height:34px !important; font-size:13px !important; }
  .corp-partner-name{ font-size:9.5px !important; }
  .corp-partner-ind{ display:none !important; }

  /* JOIN CTA */
  .corp-join{ padding:10px 14px 40px !important; }
  .corp-join-card{ padding:26px 18px !important; border-radius:18px !important; }
  .corp-join-card h2{ font-size:23px !important; }
  .corp-join-card p{ font-size:12.5px !important; }
  .corp-btn-primary.lg{ padding:13px 16px !important; font-size:14px !important; }
  .corp-join-meta{ gap:8px !important; font-size:10px !important; flex-wrap:wrap; justify-content:center; }
}

/* ═══ MOBILE: corporate stats 2×2 + footer rules unified sitewide ═══ */
@media (max-width:920px){

  /* corporate hero stats: clean 2×2 tiles, nothing truncated */
  .corp-stats{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .corp-stat{
    padding:10px 6px !important;
    border-radius:12px !important;
  }
  .corp-stat b{ font-size:17px !important; }
  .corp-stat span{ font-size:9px !important; white-space:normal !important; }

  /* the homepage footer treatment, now on EVERY page's footer */
  #contact-footer .footer-grid{
    display:grid !important;
    grid-template-columns:1fr 1.2fr !important;
    gap:18px 16px !important;
  }
  #contact-footer .footer-grid > *{ display:block !important; grid-column:auto !important; }
  #contact-footer .footer-brand{ grid-column:1 / -1 !important; }
  #contact-footer .footer-grid > .footer-col:nth-child(2),
  #contact-footer .footer-grid > .footer-col:nth-child(3){ display:none !important; }
  #contact-footer .footer-grid > .footer-col:nth-child(4){ grid-column:1 !important; }
  #contact-footer .footer-grid > .footer-col:nth-child(5){ grid-column:2 !important; grid-row:2 !important; }
  #contact-footer{ padding:36px 16px 20px !important; }
  #contact-footer .footer-bottom{
    display:flex !important; justify-content:center !important; flex-wrap:nowrap !important;
  }
  #contact-footer .footer-bottom span:nth-child(2){ display:none !important; }
  #contact-footer .footer-bottom span:first-child{ white-space:nowrap; font-size:9.5px; }
}

/* ═══ MOBILE: country package coverflow → full-card swipe deck ═══
      (same feel as the homepage story deck; overrides the JS
      coverflow's inline transforms) ═══ */
@media (max-width:920px){
  .cf-track{
    position:static !important; height:auto !important;
    display:flex !important;
    gap:0 !important;
    overflow-x:auto !important;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:10px 8vw 26px !important;
    scroll-padding:0 8vw;
  }
  .cf-track::-webkit-scrollbar{ display:none; }
  .cf-card{
    position:relative !important; left:auto !important; top:auto !important;
    transform:none !important; opacity:1 !important; filter:none !important;
    pointer-events:auto !important;
    flex:0 0 84% !important; width:84% !important; max-width:84%;
    height:auto !important;
    margin-right:-12% !important;
    scroll-snap-align:center;
    box-shadow:
      0 10px 0 -4px rgba(10,21,38,.10),
      0 20px 0 -8px rgba(10,21,38,.06),
      0 24px 40px rgba(10,21,38,.18) !important;
  }
  .cf-card:nth-child(1){ z-index:12; } .cf-card:nth-child(2){ z-index:11; }
  .cf-card:nth-child(3){ z-index:10; } .cf-card:nth-child(4){ z-index:9; }
  .cf-card:nth-child(5){ z-index:8; }  .cf-card:nth-child(6){ z-index:7; }
  .cf-card:nth-child(7){ z-index:6; }  .cf-card:nth-child(8){ z-index:5; }
  .cf-card:nth-child(9){ z-index:4; }  .cf-card:nth-child(10){ z-index:3; }
  .cf-card:nth-child(odd){ rotate:-1.2deg; }
  .cf-card:nth-child(even){ rotate:1.4deg; translate:0 4px; }
  .cf-card:last-child{ margin-right:0 !important; }

  /* fully visible card content */
  .cf-body{ padding:14px 15px 13px !important; }
  .cf-card h3, .cf-title{ font-size:16px !important; }
  .cf-loc{ font-size:10.5px !important; }
  .cf-highs li{ font-size:11.5px !important; padding:2.5px 0 !important; }
  .cf-foot{ padding-top:10px !important; }
  .cf-btn{ padding:9px 16px !important; font-size:12.5px !important; }
  .cf-more{ font-size:9.5px !important; }

  /* swipe replaces the machinery */
  .cf-nav, .cf-dots{ display:none !important; }
}

/* ═══ MOBILE: country "Tailor your package" — compact, outlined fields ═══ */
@media (max-width:920px){
  .cpz-wrap{ padding:16px 12px 18px !important; }
  .cpz-head{ margin-bottom:12px !important; }
  .cpz-mode{ margin-bottom:12px !important; }
  .cpz-mode button{ font-size:13px !important; padding:9px 14px !important; }

  /* every field group becomes its own outlined card */
  .cpz-grid{ display:flex !important; flex-direction:column !important; gap:8px !important; }
  .cpz-field{
    border:1.5px solid rgba(10,21,38,.14) !important;
    border-radius:12px !important;
    padding:9px 12px 10px !important;
    background:#fff !important;
    margin:0 !important;
    transition:border-color .18s, box-shadow .18s;
  }
  .cpz-field:focus-within{
    border-color:var(--cp, var(--azure)) !important;
    box-shadow:0 0 0 3px color-mix(in srgb, var(--cp, var(--azure)) 14%, transparent);
  }
  .cpz-field > label, .cpz-field .cpz-lbl{
    font-size:9px !important; letter-spacing:.09em !important;
    margin-bottom:6px !important;
  }

  /* pairs that belong together share a row inside the stack */
  .cpz-field:has(.cpz-step){ }
  .cpz-grid .cpz-field{ width:100% !important; }

  /* compact inner controls */
  .cpz-step button{ width:26px !important; height:26px !important; font-size:13px !important; }
  .cpz-step span{ font-size:13.5px !important; min-width:18px; }
  .cpz-field input[type=date], .cpz-select{ font-size:16px !important; padding:4px 0 !important; }
  .cpz-chips{ gap:6px !important; }
  .cpz-chip{ padding:5px 11px !important; font-size:11px !important; }
  .cpz-seg{ gap:6px !important; }
  .cpz-seg button{ padding:6px 11px !important; font-size:11px !important; }

  /* inclusions + CTA */
  .cpz-incl{ padding:12px 13px !important; border-radius:12px !important; margin-top:10px !important; }
  .cpz-incl-t{ font-size:10px !important; margin-bottom:7px !important; }
  .cpz-incl li{ font-size:11px !important; padding:2px 0 !important; }
  .cpz-bottom{ margin-top:12px !important; }
  .cpz-go{ width:100% !important; padding:13px !important; font-size:14px !important; border-radius:12px !important; }
}

/* ═══ MOBILE: tailor customizer in ~one screen — paired outline boxes ═══ */
@media (max-width:920px){

  /* pair the small field cards two per row */
  .cpz-grid{
    flex-direction:row !important; flex-wrap:wrap !important;
    gap:7px !important;
  }
  .cpz-grid .cpz-field{ flex:1 1 calc(50% - 4px) !important; width:auto !important; }
  /* chip-heavy groups keep the full row */
  .cpz-grid .cpz-field:has(.cpz-chips){ flex:1 1 100% !important; }
  .cpz-grid .cpz-field:has(.cpz-seg button:nth-child(4)){ flex:1 1 100% !important; }

  /* the blank boxes themselves: tighter */
  .cpz-field{ padding:7px 10px 8px !important; border-radius:11px !important; }
  .cpz-field > label, .cpz-field .cpz-lbl{ font-size:8.5px !important; margin-bottom:4px !important; }
  .cpz-field input[type=date]{ font-size:15px !important; padding:2px 0 !important; min-height:22px; }
  .cpz-step{ gap:8px !important; }
  .cpz-step button{ width:24px !important; height:24px !important; }
  .cpz-step span{ font-size:13px !important; }
  .cpz-chip{ padding:4px 10px !important; font-size:10.5px !important; }
  .cpz-seg button{ padding:5px 9px !important; font-size:10.5px !important; }

  /* the inclusions recap steps aside — the proposal repeats it anyway */
  .cpz-incl{ display:none !important; }

  .cpz-wrap{ padding:14px 11px 15px !important; }
  .cpz-bottom{ margin-top:10px !important; }
  .cpz-go{ padding:12px !important; }
}

/* new mobile-only elements: dormant by default (desktop never shows them) */
.cf-viewall, .pkall{ display:none; }

/* ═══ MOBILE: country packages — minimal app-style cards + View All + browser ═══ */
@media (max-width:920px){

  /* the scroller: clean minimal cards, ~2 per view (deck styling retired here) */
  .cf-track{ gap:10px !important; padding:6px 14px 18px !important; scroll-padding:0 14px; }
  .cf-card{
    flex:0 0 46% !important; width:46% !important; max-width:46%;
    margin-right:0 !important;
    rotate:none !important; translate:none !important;
    border-radius:16px !important;
    box-shadow:0 8px 22px rgba(10,21,38,.12) !important;
    scroll-snap-align:start;
    cursor:pointer;
  }
  /* only 4 real cards in the strip; the rest live in the browser */
  .cf-track .cf-card:nth-child(n+5):not(.cf-viewall){ display:none !important; }

  .cf-top{ height:96px !important; border-radius:16px 16px 0 0; }
  .cf-cat{ font-size:8px !important; padding:3px 7px !important; top:7px !important; left:7px !important; }
  .cf-badge{ display:none !important; }
  .cf-body{ padding:10px 11px 11px !important; }
  .cf-card h3{ font-size:12.5px !important; line-height:1.3 !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:2.6em; }
  .cf-loc{ font-size:9.5px !important; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .cf-highs, .cf-more, .cf-foot .cf-btn{ display:none !important; }
  .cf-foot{ padding:7px 0 0 !important; border:none !important; }
  .cf-foot span{ font-size:8.5px !important; }
  .cf-foot b{ font-size:13.5px !important; }

  /* the View All card (City-app style) */
  .cf-viewall{
    display:flex !important; flex-direction:column;
    align-items:center; justify-content:center; gap:10px;
    background:#15181E !important; border:1px solid #23272F;
    min-height:190px;
  }
  .cf-va-circle{
    width:44px; height:44px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background:#1D2129; color:var(--cp, #E53935);
    font-size:22px; font-weight:800;
  }
  .cf-va-label{
    color:var(--cp, #E53935); font-weight:800; font-size:12px;
    text-align:center; line-height:1.4;
  }

  /* fullscreen package browser */
  .pkall.open{ display:block !important; }
  .pkall{
    position:fixed; inset:0; z-index:100000;
    background:#0F1216; overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  .pkall-head{
    position:sticky; top:0; z-index:2;
    display:flex; align-items:center; gap:6px;
    background:rgba(15,18,22,.92);
    -webkit-backdrop-filter:blur(12px); backdrop-filter:blur(12px);
    padding:14px 12px;
  }
  .pkall-back{
    width:36px; height:36px; border:none; border-radius:50%;
    background:transparent; color:#fff; font-size:26px; line-height:1;
    display:flex; align-items:center; justify-content:center;
  }
  .pkall-title{
    flex:1; text-align:center; margin-right:36px;
    color:#fff; font-family:'Cabinet Grotesk',sans-serif;
    font-weight:800; font-size:16px;
  }
  .pkall-grid{
    display:grid; grid-template-columns:repeat(2, minmax(0,1fr));
    gap:12px; padding:6px 14px 30px;
  }
  .pkall-card{
    background:#171B21; border-radius:16px; overflow:hidden;
    padding-bottom:12px; cursor:pointer;
  }
  .pkall-img{
    height:110px; background-size:cover; background-position:center;
    background-color:#20242C; position:relative;
    border-radius:16px 16px 0 0;
  }
  .pkall-chip{
    position:absolute; top:8px; right:8px;
    background:#1E7F3E; color:#fff; font-size:8px; font-weight:800;
    letter-spacing:.06em; text-transform:uppercase;
    padding:3px 7px; border-radius:5px;
  }
  .pkall-t{
    color:#fff; font-weight:800; font-size:13.5px; line-height:1.3;
    padding:10px 11px 3px;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  .pkall-s{
    color:#9AA3AF; font-size:10.5px; padding:0 11px 8px;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  }
  .pkall-pill{
    display:inline-flex; margin:0 11px;
    border:1px solid #2A2F37; color:#E8ECF2;
    font-size:10.5px; font-weight:700;
    padding:4px 10px; border-radius:999px;
  }
}

/* ═══ MOBILE: ONE package card everywhere + white View All browser ═══ */
@media (max-width:920px){

  /* homepage cards: blank space trimmed */
  #tours .tc{ height:270px !important; }
  #tours .tours-grid{ max-height:calc(270px * 2 + 10px); }
  #tours .tc-img{ height:98px !important; }
  #tours .tc-body{ padding:9px 10px 10px !important; }
  #tours .tc-title{ min-height:0 !important; margin-bottom:4px !important; }
  #tours .tc-rating{ margin-bottom:4px !important; }
  #tours .tc-foot{ padding-top:8px !important; gap:6px !important; }

  /* THE SAME compact card, on all-packages and in the country browser */
  .pkgall-grid, .pkall-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:10px !important;
  }
  .pkgall-grid .tc, .pkall-grid .tc{
    height:270px !important; border-radius:14px;
    display:flex; flex-direction:column; overflow:hidden;
  }
  .pkgall-grid .tc-img, .pkall-grid .tc-img{ height:98px !important; }
  .pkgall-grid .tc-body, .pkall-grid .tc-body{
    padding:9px 10px 10px !important;
    display:flex; flex-direction:column; flex:1 1 auto;
  }
  .pkgall-grid .tc-loc, .pkall-grid .tc-loc{
    font-size:9.5px !important; margin-bottom:4px !important;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  }
  .pkgall-grid .tc-title, .pkall-grid .tc-title{
    font-size:13.5px !important; line-height:1.25 !important; margin-bottom:4px !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  .pkgall-grid .tc-rating, .pkall-grid .tc-rating{ margin-bottom:4px !important; font-size:10px; }
  .pkgall-grid .tc-highlights, .pkall-grid .tc-highlights{ display:none !important; }
  .pkgall-grid .tc-pr-old, .pkall-grid .tc-pr-old{ display:none !important; }
  .pkgall-grid .tc-foot, .pkall-grid .tc-foot{
    margin-top:auto !important; padding-top:8px !important;
    flex-direction:column !important; align-items:stretch !important; gap:6px !important;
  }
  .pkgall-grid .tc-pr, .pkall-grid .tc-pr{ font-size:15px !important; white-space:nowrap; }
  .pkgall-grid .btn-book, .pkall-grid .btn-book{
    width:100%; padding:9px 10px !important; font-size:12.5px !important;
    border-radius:10px !important; text-align:center;
  }
  .pkgall-grid .tc .tc-title, .pkall-grid .tc .tc-title{ color:var(--ink) !important; }
  .pkgall-grid .tc-dur, .pkall-grid .tc-dur{ font-size:8.5px; padding:3px 7px; }
  .pkgall-grid .tc-b, .pkall-grid .tc-b{ font-size:8.5px !important; padding:3px 7px !important; }
  .pkgall-grid .tc-wish, .pkall-grid .tc-wish{ width:26px; height:26px; font-size:13px; }

  /* the View All browser: white, airy, same as the rest of the site */
  .pkall{ background:#F4F7FB; }
  .pkall-head{
    background:rgba(255,255,255,.92);
    border-bottom:1px solid rgba(10,21,38,.08);
  }
  .pkall-back{ color:#0A1526; }
  .pkall-title{ color:#0A1526; }
  .pkall-grid{ padding:10px 12px 30px; }
}

/* ═══ MOBILE: country strip cards = homepage card design; white View All ═══ */
@media (max-width:920px){
  .cf-card{
    height:270px !important;
    display:flex !important; flex-direction:column !important;
    background:#fff !important;
  }
  .cf-top{ height:98px !important; flex:0 0 98px; }
  .cf-body{
    padding:9px 10px 10px !important;
    display:flex !important; flex-direction:column !important; flex:1 1 auto !important;
  }
  .cf-card h3{
    font-size:13.5px !important; line-height:1.25 !important; margin:0 0 4px !important;
  }
  .cf-loc{ font-size:9.5px !important; margin-bottom:4px !important; }
  /* footer matches the homepage card: price stacked, full-width Book Now */
  .cf-foot{
    display:flex !important; margin-top:auto !important;
    flex-direction:column !important; align-items:stretch !important;
    gap:6px !important; padding:8px 0 0 !important;
  }
  .cf-foot span{ font-size:8.5px !important; }
  .cf-foot b{ font-size:15px !important; white-space:nowrap; }
  .cf-foot s, .cf-old{ display:none !important; }        /* strike price: hidden like homepage */
  .cf-foot .cf-btn{
    display:block !important;
    width:100% !important; padding:9px 10px !important;
    font-size:12.5px !important; border-radius:10px !important;
    text-align:center;
  }

  /* View All card: white, matching its neighbours */
  .cf-viewall{
    background:#fff !important;
    border:1.5px solid rgba(10,21,38,.12) !important;
    min-height:270px !important;
    box-shadow:0 8px 22px rgba(10,21,38,.10) !important;
  }
  .cf-va-circle{
    background:color-mix(in srgb, var(--cp, #E53935) 12%, #fff);
    color:var(--cp, #E53935);
  }
  .cf-va-label{ color:var(--cp, #E53935); }
}

/* new mobile rail: dormant on desktop */
.cm-strip{ display:none; }

/* ═══ MOBILE: country rail = REAL homepage cards; coverflow retired ═══ */
@media (max-width:920px){
  /* desktop coverflow machinery steps aside on phones */
  .cf-track, .cf-nav, .cf-dots{ display:none !important; }

  .cm-strip{
    display:flex !important;
    gap:10px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:6px 14px 18px;
    scroll-padding:0 14px;
  }
  .cm-strip::-webkit-scrollbar{ display:none; }
  .cm-strip .tc, .cm-strip .cf-viewall{
    flex:0 0 46%; max-width:46%;
    scroll-snap-align:start;
  }
  /* identical geometry to the homepage / all-packages / browser cards */
  .cm-strip .tc{
    height:270px !important; border-radius:14px;
    display:flex; flex-direction:column; overflow:hidden;
  }
  .cm-strip .tc-img{ height:98px !important; }
  .cm-strip .tc-body{ padding:9px 10px 10px !important; display:flex; flex-direction:column; flex:1 1 auto; }
  .cm-strip .tc-loc{ font-size:9.5px !important; margin-bottom:4px !important; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .cm-strip .tc-title{
    font-size:13.5px !important; line-height:1.25 !important; margin-bottom:4px !important;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
    color:var(--ink) !important;
  }
  .cm-strip .tc-rating{ margin-bottom:4px !important; font-size:10px; }
  .cm-strip .tc-highlights{ display:none !important; }
  .cm-strip .tc-pr-old{ display:none !important; }
  .cm-strip .tc-foot{
    margin-top:auto !important; padding-top:8px !important;
    flex-direction:column !important; align-items:stretch !important; gap:6px !important;
  }
  .cm-strip .tc-pr{ font-size:15px !important; white-space:nowrap; }
  .cm-strip .btn-book{
    width:100%; padding:9px 10px !important; font-size:12.5px !important;
    border-radius:10px !important; text-align:center;
  }
  .cm-strip .tc-dur{ font-size:8.5px; padding:3px 7px; }
  .cm-strip .tc-b{ font-size:8.5px !important; padding:3px 7px !important; }
  .cm-strip .tc-wish{ width:26px; height:26px; font-size:13px; }
}

/* ═══ MOBILE: no hover-lift on touch scroll + View All rounding ═══ */
@media (max-width:920px){
  /* touch screens turn hover into sticky taps — no lifting anywhere */
  .tc:hover, .tc:active,
  .cm-strip .tc:hover, .pkgall-grid .tc:hover, .pkall-grid .tc:hover, #tours .tc:hover{
    transform:none !important;
    translate:none !important;
  }
  .tc{ transition:box-shadow .2s !important; }

  /* View All card: identical rounding and height to its card neighbours */
  .cm-strip .cf-viewall{
    height:270px !important; min-height:0 !important;
    border-radius:14px !important;
    box-shadow:0 8px 22px rgba(10,21,38,.10) !important;
  }
}

/* ═══ MOBILE: View All browser — header always above the cards ═══ */
@media (max-width:920px){
  .pkall-head{ z-index:60 !important; }
  /* each card becomes its own stacking context, so its badges and
     hearts can never climb above the sticky header */
  .pkall-grid .tc{ position:relative; isolation:isolate; }
}

/* new nav element: dormant on desktop */
.ni-bot{ display:none; }

/* ═══════════ MOBILE: DYNAMIC-ISLAND HEADER ═══════════
   robot head · centred logo · three dots — collapses inward ═══ */
@media (max-width:920px){

  #nav{ display:flex; justify-content:center; background:transparent !important; }
  #nav .nav-wrap{
    position:relative;
    width:min(78vw, 300px);
    height:46px;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 13px !important;
    border-radius:999px !important;
    transition:width .5s cubic-bezier(.34,.9,.26,1), height .5s cubic-bezier(.34,.9,.26,1), padding .5s;
  }

  /* the robot head, left */
  .ni-bot{ display:flex !important; align-items:center; flex:0 0 auto; }
  .ni-bot-head{
    position:relative; width:23px; height:19px;
    background:linear-gradient(180deg,#FFFFFF,#DDE7F2);
    border-radius:9px 9px 8px 8px;
    box-shadow:0 2px 5px rgba(0,0,0,.35), inset 0 -2px 3px rgba(140,170,210,.4);
  }
  .ni-bot-visor{
    position:absolute; left:3.5px; top:5px; width:16px; height:9px;
    background:#0A1526; border-radius:5px;
    display:flex; align-items:center; justify-content:center; gap:3px;
  }
  .ni-bot-visor i{
    width:3.5px; height:3.5px; border-radius:50%;
    background:#59C2FF; box-shadow:0 0 4px #59C2FF;
    animation:niBlink 4.6s infinite;
  }
  .ni-bot-ear{ position:absolute; top:6px; width:2.5px; height:7px; background:#BFD0E4; border-radius:2px; }
  .ni-bot-ear.l{ left:-3.5px; } .ni-bot-ear.r{ right:-3.5px; }
  @keyframes niBlink{ 0%,92%,100%{transform:scaleY(1)} 95%{transform:scaleY(.12)} }

  /* logo, dead centre */
  #nav .logo{
    position:absolute; left:50%; transform:translateX(-50%);
    margin:0 !important;
    transition:opacity .3s, transform .45s;
  }
  #nav .logo-img{ height:20px !important; width:auto; }

  /* three dots, right (same button, new clothes) */
  .nav-toggle{
    display:flex !important; align-items:center; gap:3.5px;
    width:auto !important; height:auto !important; padding:10px 2px !important;
  }
  .nav-toggle span{
    width:4.5px !important; height:4.5px !important;
    border-radius:50% !important;
    background:#fff !important;
    margin:0 !important; transform:none !important;
  }

  /* ── the island collapse: out → in ── */
  #nav.nav-gone{
    max-width:none !important; min-width:0 !important;
    opacity:1 !important; padding:inherit !important;
    overflow:visible !important; pointer-events:auto !important;
    transform:none !important;
  }
  #nav.nav-gone .nav-wrap{
    min-width:0 !important;
    width:118px; height:38px;
    padding:0 11px !important;
  }
  #nav.nav-gone .logo{ opacity:0; transform:translateX(-50%) scale(.5); pointer-events:none; }
}

/* ═══ MOBILE: dynamic island v2 — forced geometry + solid glass ═══
      (desktop nav rules were out-muscling the island; everything
      here now carries !important) ═══ */
@media (max-width:920px){
  #nav, #nav.nav-solid{ background:transparent !important; box-shadow:none !important; border:none !important; }

  #nav .nav-wrap{
    width:min(68vw, 258px) !important;
    max-width:min(68vw, 258px) !important;
    min-width:0 !important;
    height:44px !important;
    padding:0 12px !important;
    border-radius:999px !important;
    background:linear-gradient(135deg, rgba(13,24,44,.97), rgba(8,15,28,.97)) !important;
    -webkit-backdrop-filter:blur(18px) saturate(150%) !important;
    backdrop-filter:blur(18px) saturate(150%) !important;
    border:1px solid rgba(255,255,255,.16) !important;
    box-shadow:0 10px 30px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.10) !important;
    opacity:1 !important;
    overflow:visible !important;
  }

  /* collapsed: a genuinely tiny pill, same solid glass */
  #nav.nav-gone .nav-wrap{
    width:112px !important;
    max-width:112px !important;
    height:36px !important;
    padding:0 10px !important;
    background:linear-gradient(135deg, rgba(13,24,44,.97), rgba(8,15,28,.97)) !important;
    border:1px solid rgba(255,255,255,.16) !important;
    box-shadow:0 8px 24px rgba(0,0,0,.5) !important;
    opacity:1 !important;
  }
  #nav.nav-gone .ni-bot-head{ transform:scale(.9); }
}

/* ═══════════ MOBILE: DYNAMIC ISLAND — FINAL ═══════════
   The desktop system paints #nav itself as a blurred capsule and
   animates ITS width (that was the ghost layer + sideways hiding).
   On phones, #nav is stripped to a bare invisible rail and the
   inner .nav-wrap is the one and only island. ═══ */
@media (max-width:920px){

  #nav, #nav.solid, #nav.nav-solid, #nav.nav-mini, #nav.nav-gone{
    position:fixed !important; top:10px !important; left:0 !important; right:0 !important;
    width:auto !important; max-width:none !important; min-width:0 !important;
    margin:0 !important; padding:0 !important;
    background:none !important;
    -webkit-backdrop-filter:none !important; backdrop-filter:none !important;
    border:none !important; box-shadow:none !important; border-radius:0 !important;
    opacity:1 !important; overflow:visible !important;
    transform:none !important; transition:none !important;
    display:flex !important; justify-content:center !important;
    pointer-events:none !important;          /* empty sides don't block taps */
  }
  #nav .nav-wrap, #nav .nav-wrap *{ pointer-events:auto !important; }

  /* the one true island */
  #nav .nav-wrap, #nav.nav-gone .nav-wrap{
    position:relative !important;
    display:flex !important; align-items:center !important; justify-content:space-between !important;
    height:44px !important;
    border-radius:999px !important;
    background:linear-gradient(135deg, rgba(13,24,44,.97), rgba(8,15,28,.97)) !important;
    -webkit-backdrop-filter:blur(16px) saturate(150%) !important;
    backdrop-filter:blur(16px) saturate(150%) !important;
    border:1px solid rgba(255,255,255,.16) !important;
    box-shadow:0 10px 30px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.10) !important;
    opacity:1 !important; overflow:visible !important;
    margin:0 !important;
    transition:width .55s cubic-bezier(.34,.9,.26,1), padding .45s !important;
  }
  #nav .nav-wrap{
    width:min(64vw, 244px) !important;
    max-width:none !important; min-width:0 !important;
    padding:0 13px !important;
  }
  /* collapsed: tiny pill — head + dots */
  #nav.nav-gone .nav-wrap{
    width:110px !important;
    max-width:none !important; min-width:0 !important;
    padding:0 11px !important;
  }
  #nav.nav-gone .logo{ opacity:0 !important; transform:translateX(-50%) scale(.4) !important; pointer-events:none !important; }

  /* only head · logo · dots live on the island */
  #nav .nav-menu, #nav .nav-actions{ display:none !important; }
}

/* ═══ MOBILE ISLAND: full hide on scroll + working menu dropdown ═══ */
@media (max-width:920px){

  /* scroll down: the island fully leaves (slides up + fades) */
  #nav .nav-wrap{
    transition:transform .5s cubic-bezier(.34,.9,.26,1), opacity .35s ease !important;
  }
  #nav.nav-gone .nav-wrap{
    width:min(64vw, 244px) !important;      /* geometry stays; motion hides it */
    padding:0 13px !important;
    transform:translateY(-180%) scale(.9) !important;
    opacity:0 !important;
    pointer-events:none !important;
  }
  #nav.nav-gone .logo{ opacity:1 !important; transform:translateX(-50%) !important; }

  /* the three dots open the dropdown: let the .open state through */
  #nav .nav-menu{ display:none !important; }
  #nav .nav-menu.open{
    display:flex !important;
    position:absolute; top:54px; left:50%; transform:translateX(-50%);
    flex-direction:column; align-items:stretch;
    width:min(78vw, 290px);
    background:linear-gradient(160deg, rgba(13,24,44,.98), rgba(8,15,28,.98));
    -webkit-backdrop-filter:blur(18px); backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.16);
    border-radius:20px;
    box-shadow:0 18px 44px rgba(0,0,0,.5);
    padding:10px;
    gap:2px;
    z-index:1001;
  }
  #nav .nav-menu.open a{
    padding:11px 14px; border-radius:12px;
    font-size:14px; color:rgba(255,255,255,.88);
  }
  #nav .nav-menu.open a:active{ background:rgba(255,255,255,.10); }
  .ni-bot{ cursor:pointer; text-decoration:none; }
}

/* ═══ MOBILE ISLAND v-final-2: desktop-style swallow + bigger logo + white menu ═══ */
@media (max-width:920px){

  /* collapse = the desktop swallow: the capsule's width contracts to
     nothing around its frozen contents */
  #nav .nav-wrap > *{ flex-shrink:0; }
  #nav .nav-wrap{
    transition:width .55s cubic-bezier(.4,.7,.25,1),
               padding .55s cubic-bezier(.4,.7,.25,1),
               opacity .38s ease,
               border-color .38s !important;
  }
  #nav.nav-gone .nav-wrap{
    width:0 !important;
    padding:0 !important;
    opacity:0 !important;
    border-color:transparent !important;
    box-shadow:none !important;
    overflow:hidden !important;
    transform:none !important;
    pointer-events:none !important;
  }

  /* logo: slightly bigger */
  #nav .logo-img{ height:24px !important; }

  /* menu dropdown: white, minimal, small buttons (the classic look) */
  #nav .nav-menu.open{
    background:#FFFFFF !important;
    -webkit-backdrop-filter:none !important; backdrop-filter:none !important;
    border:1px solid rgba(10,21,38,.08) !important;
    border-radius:18px !important;
    box-shadow:0 16px 40px rgba(10,21,38,.16) !important;
    padding:8px !important;
    gap:5px !important;
  }
  #nav .nav-menu.open a{
    background:#F4F7FB !important;
    color:#0A1526 !important;
    font-size:13.5px !important; font-weight:700;
    padding:9px 13px !important;
    border-radius:11px !important;
    text-align:center;
  }
  #nav .nav-menu.open a:active{ background:#E7EEF7 !important; }
  #nav .nav-menu.open a::after{ display:none; }
}

/* ═══ MOBILE ISLAND: perfectly mirrored open/close ═══
      Opening: appear instantly, then un-swallow.
      Closing: swallow fully, then blink out at the very end. ═══ */
@media (max-width:920px){
  #nav .nav-wrap{
    /* used when OPENING (leaving nav-gone): opacity returns immediately */
    transition:width .55s cubic-bezier(.4,.7,.25,1),
               padding .55s cubic-bezier(.4,.7,.25,1),
               opacity .18s ease 0s,
               border-color .3s !important;
  }
  #nav.nav-gone .nav-wrap{
    /* used when CLOSING: the fade waits for the swallow to finish */
    transition:width .55s cubic-bezier(.4,.7,.25,1),
               padding .55s cubic-bezier(.4,.7,.25,1),
               opacity .18s ease .37s,
               border-color .3s .3s !important;
  }
}

/* ═══ MOBILE ISLAND: collapse into a centre dot (GPU-smooth) ═══
      No more door: the capsule scales down into its own centre and
      fades at the last moment. Scale animation = buttery smooth. ═══ */
@media (max-width:920px){
  #nav .nav-wrap{
    transform-origin:50% 50% !important;
    transition:transform .55s cubic-bezier(.4,.72,.24,1),
               opacity .2s ease 0s !important;
  }
  #nav.nav-gone .nav-wrap{
    /* geometry stays put — the whole capsule shrinks to a dot */
    width:min(64vw, 244px) !important;
    padding:0 13px !important;
    overflow:visible !important;
    border-color:rgba(255,255,255,.16) !important;
    transform:scale(.05) !important;
    opacity:0 !important;
    transition:transform .55s cubic-bezier(.4,.72,.24,1),
               opacity .22s ease .3s !important;
  }
}

/* ═══ MOBILE ISLAND: symmetric swallow → centre dot → fade ═══
      Both edges rush to the middle, the capsule lands as a tiny
      dot, then blinks out. Contents vanish first so the closing
      glass is clean. ═══ */
@media (max-width:920px){

  /* contents: gone at the first breath of collapse; return late on open */
  #nav .nav-wrap > *{
    transition:opacity .18s ease .26s !important;   /* opening: appear once grown */
    opacity:1;
  }
  #nav.nav-gone .nav-wrap > *{
    opacity:0 !important;
    transition:opacity .14s ease 0s !important;     /* closing: vanish first */
  }

  /* the capsule: width AND height rush to a 14px dot, centred */
  #nav .nav-wrap{
    transform:none !important;
    transition:width .55s cubic-bezier(.4,.72,.24,1),
               height .55s cubic-bezier(.4,.72,.24,1),
               padding .55s cubic-bezier(.4,.72,.24,1),
               opacity .18s ease 0s !important;
  }
  #nav.nav-gone .nav-wrap{
    transform:none !important;
    width:14px !important;
    height:14px !important;
    padding:0 !important;
    overflow:hidden !important;
    opacity:0 !important;
    border-color:rgba(255,255,255,.16) !important;
    transition:width .55s cubic-bezier(.4,.72,.24,1),
               height .55s cubic-bezier(.4,.72,.24,1),
               padding .55s cubic-bezier(.4,.72,.24,1),
               opacity .18s ease .4s !important;    /* fade only at the very end */
  }
}

/* ═══ MOBILE: hero robot trim + stats bar 3×2 tight ═══ */
@media (max-width:920px){

  /* robot: shorter (top comes down; feet stay planted) and a step right */
  .search-box > .racbot{
    transform:scale(.48) !important;
    right:5% !important;
  }

  /* 15K+ black bar: strict 3×2, minimal air */
  .stats-inner{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0,1fr)) !important;
    gap:0 !important;
    padding:4px 0 !important;
  }
  .stat-cell{
    padding:7px 3px !important;
    text-align:center !important;
    border:none !important;
  }
  .stat-n{ font-size:15px !important; }
  .stat-l{ font-size:7.5px !important; letter-spacing:.05em; white-space:nowrap; }
  .stats-bar{ padding:0 10px !important; }
}

/* ═══ MOBILE ISLAND: faster spring + destinations-page repair ═══ */
@media (max-width:920px){

  /* snappier, smoother timings across the board */
  #nav .nav-wrap{
    transition:width .4s cubic-bezier(.4,.8,.25,1),
               height .4s cubic-bezier(.4,.8,.25,1),
               padding .4s cubic-bezier(.4,.8,.25,1),
               opacity .14s ease 0s !important;
  }
  #nav.nav-gone .nav-wrap{
    transition:width .4s cubic-bezier(.4,.8,.25,1),
               height .4s cubic-bezier(.4,.8,.25,1),
               padding .4s cubic-bezier(.4,.8,.25,1),
               opacity .14s ease .28s !important;
  }
  #nav .nav-wrap > *{ transition:opacity .12s ease .18s !important; }
  #nav.nav-gone .nav-wrap > *{ transition:opacity .1s ease 0s !important; }

  /* dots ALWAYS on the right, whatever order a page's markup uses */
  #nav .nav-toggle{ order:9 !important; margin-left:auto !important; }
  #nav .ni-bot{ order:-1 !important; margin-right:auto !important; }

  /* destinations page (own header, no robot markup yet): draw a
     stand-in head so the island looks identical there */
  #nav .nav-wrap:not(:has(.ni-bot))::before{
    content:'';
    order:-1; margin-right:auto;
    width:23px; height:19px; flex:0 0 auto;
    border-radius:9px 9px 8px 8px;
    background:
      radial-gradient(circle 2px at 8px 9.5px,  #59C2FF 98%, transparent 100%),
      radial-gradient(circle 2px at 15px 9.5px, #59C2FF 98%, transparent 100%),
      linear-gradient(#0A1526,#0A1526) 50% 5px / 16px 9px no-repeat,
      linear-gradient(180deg,#FFFFFF,#DDE7F2);
    box-shadow:0 2px 5px rgba(0,0,0,.35), inset 0 -2px 3px rgba(140,170,210,.4);
  }
}

/* ═══════════ MOBILE: THE MONEY SCREENS ═══════════
      Booking + payment popup as a bottom sheet, and the package
      details popup as a full-height sheet. Phone-native, thumb-first. */
@media (max-width:920px){

  /* ── BOOKING MODAL → bottom sheet ── */
  .book-modal{
    align-items:flex-end !important;
    padding:0 !important;
  }
  .book-card{
    max-width:none !important;
    border-radius:22px 22px 0 0 !important;
    max-height:94vh !important;
    padding:26px 16px calc(18px + env(safe-area-inset-bottom)) !important;
    animation:bkSheetUp .34s cubic-bezier(.32,.9,.3,1);
  }
  @keyframes bkSheetUp{ from{ transform:translateY(48px); opacity:.4; } to{ transform:none; opacity:1; } }
  .book-card::before{                      /* grabber */
    content:''; position:absolute; top:9px; left:50%; transform:translateX(-50%);
    width:42px; height:4.5px; border-radius:3px; background:rgba(10,21,38,.16);
  }
  .book-close{ top:16px !important; right:14px !important; width:34px; height:34px; font-size:24px !important; }
  .book-title{ font-size:20px !important; }
  .book-sub{ font-size:12.5px !important; }

  /* fields: full-width stack, no iOS zoom */
  .bk-row{ grid-template-columns:1fr !important; gap:10px !important; }
  .bk-field{ margin-bottom:10px; }
  .bk-field label{ font-size:11px !important; letter-spacing:.03em; margin-bottom:4px !important; }
  .bk-field input, .bk-field textarea{
    font-size:16px !important;
    padding:12px 13px !important;
    border-radius:12px !important;
  }
  .bk-field textarea{ min-height:72px; }

  /* ── payment step, thumb-first ── */
  .bk-pay{ padding:13px 12px !important; border-radius:14px !important; margin:12px 0 !important; }
  .bk-pay-head{ font-size:12.5px !important; }
  .bk-pay-head span{ display:block; font-size:10.5px !important; margin-top:1px; }
  .bk-pay-amt{ gap:10px 14px !important; margin-bottom:10px !important; }
  .bk-radio{ font-size:12.5px !important; }
  #bk_amount{ width:100% !important; font-size:16px !important; padding:11px 13px !important; border-radius:11px !important; }

  .bk-pm-row{ gap:7px !important; }
  .bk-pm{
    min-width:0 !important;
    padding:13px 4px !important;
    font-size:13px !important;
    border-radius:12px !important;
  }
  .bk-pm-detail{ padding:11px 12px !important; }
  .bk-pm-num{ font-size:14.5px !important; word-break:break-word; }
  .bk-pm-note{ font-size:11.5px !important; }

  .bk-pay .bk-row{ display:flex !important; flex-direction:column !important; gap:9px !important; margin-top:9px !important; }
  #bk_trx{ font-size:16px !important; letter-spacing:.04em; }
  #bk_shot{
    font-size:12px !important; width:100%;
    padding:10px !important;
    border:1.5px dashed rgba(140,170,210,.55);
    border-radius:11px; background:#fff;
  }
  .bk-pay-note{ font-size:10.5px !important; }

  .book-submit{ padding:15px !important; font-size:15px !important; border-radius:13px !important; margin-top:14px !important; }
  .book-check{ width:52px; height:52px; font-size:24px; }

  /* ── PACKAGE DETAILS POPUP → full-height sheet ── */
  .pkgm{ padding:0 !important; align-items:flex-end !important; }
  .pkgm-box{
    width:100% !important;
    max-height:96vh !important;
    border-radius:20px 20px 0 0 !important;
    animation:bkSheetUp .34s cubic-bezier(.32,.9,.3,1);
  }
  .pkgm-x{ top:12px !important; right:12px !important; width:34px !important; height:34px !important; }
  .pkgm-hero{ min-height:168px !important; }
  .pkgm-hero-in{ padding:16px 16px 14px !important; }
  .pkgm-hero h3{ font-size:20px !important; }
  .pkgm-sub{ font-size:11.5px !important; }
  .pkgm-chip{ font-size:8.5px !important; padding:3px 8px !important; }
  .pkgm-body{ padding:16px 16px 8px !important; }
  .pkgm-sec h4{ font-size:13px !important; }
  .pkgm-sec p, .pkgm-sec li{ font-size:12.5px !important; line-height:1.65 !important; }
  .pkgm-itin li{ padding:2px 0 14px 40px !important; }  /* clears the day-number circle */
  .pkgm-foot{
    padding:12px 16px calc(12px + env(safe-area-inset-bottom)) !important;
    gap:10px !important; flex-wrap:nowrap !important;
  }
  .pkgm-price{ font-size:11px; }
  .pkgm-price b{ font-size:17px !important; }
  .pkgm-price s{ display:none; }
  .pkgm-book{
    flex:1; padding:13px 12px !important; font-size:14px !important;
    border-radius:12px !important; text-align:center;
  }
}

/* ═══ MOBILE: destinations page — 2×2 country grid ═══
      (the dest cards' labels intentionally hang below their box;
      the tall row-gap is the landing zone that makes a grid possible) */
@media (max-width:920px){
  .dest-all-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:84px 10px !important;
    padding-bottom:70px;
  }
  .dest-all-grid .dc{
    height:150px !important;
    min-height:150px !important;
    border-radius:14px !important;
  }
  .dest-all-grid .dc-name{ font-size:14px !important; }
  .dest-all-grid .dc-price{ font-size:11px !important; }
  .dest-all-grid .dc-tag{ font-size:8.5px !important; padding:3px 7px !important; top:7px !important; right:7px !important; }
  .dest-page .sec-h2, .dest-page h1{ font-size:26px !important; }
}

/* ═══ MOBILE: destinations page — name-only tiles, 2×5 per screen ═══ */
@media (max-width:920px){
  .dest-all-grid{
    gap:8px !important;
    padding-bottom:24px !important;
  }
  .dest-all-grid .dc{
    height:112px !important;
    min-height:112px !important;
    overflow:hidden !important;          /* nothing hangs anymore */
  }
  /* only the country name survives — white, bottom-left */
  .dest-all-grid .dc-body{
    position:absolute !important; inset:auto 8px 9px 10px !important;
    padding:0 !important; transform:none !important;
    background:none !important; border:none !important; box-shadow:none !important;
    -webkit-backdrop-filter:none !important; backdrop-filter:none !important;
  }
  .dest-all-grid .dc-city{
    color:#fff !important;
    font-size:14.5px !important; font-weight:800 !important;
    line-height:1.2 !important; text-align:left !important;
    text-shadow:0 2px 8px rgba(0,0,0,.55);
    margin:0 !important;
  }
  .dest-all-grid .dc-country,
  .dest-all-grid .dc-price,
  .dest-all-grid .dc-tag,
  .dest-all-grid .dc-hover-btn,
  .dest-all-grid .dc-body > *:not(.dc-city){
    display:none !important;
  }
  /* readable name over any photo */
  .dest-all-grid .dc-grad{
    background:linear-gradient(180deg, transparent 40%, rgba(5,10,20,.72)) !important;
    opacity:1 !important;
  }
}

/* ═══ MOBILE: destinations — perfect squares, perfect grid ═══ */
@media (max-width:920px){
  .dest-page.page-wrap, .dest-page{
    padding-left:8px !important;
    padding-right:8px !important;
  }
  .dest-all-grid{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;                 /* inner gap = outer padding = 8px */
    justify-content:center !important;
  }
  .dest-all-grid .dc{
    aspect-ratio:1 / 1 !important;      /* perfect squares, sized by the grid */
    height:auto !important;
    min-height:0 !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
  }
}

/* ═══ MOBILE: destination tiles — count badge back, uniform names ═══ */
@media (max-width:920px){
  /* the "N packages" pill returns, compact, top-right */
  .dest-all-grid .dc-tag{
    display:inline-block !important;
    font-size:8.5px !important;
    padding:3px 8px !important;
    top:8px !important; right:8px !important; left:auto !important;
  }
  /* every country name: identical size, one line, never wraps */
  .dest-all-grid .dc-city{
    font-size:14px !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    max-width:100% !important;
  }
}

/* ═══ MOBILE HERO: globe only — slightly larger ═══ */
@media (max-width:920px){
  .hero-content{
    grid-template-columns:minmax(0,1fr) 200px !important;
  }
  .globe-stage{
    max-width:192px !important;
    width:192px !important;
  }
}

/* ═══ MOBILE: globe a touch larger + search-tab edge cues ═══ */
@media (max-width:920px){

  .hero-content{ grid-template-columns:minmax(0,1fr) 218px !important; }
  .globe-stage{ max-width:210px !important; width:210px !important; }

  /* frosted edge cues over the tab strip: "more services this way" */
  .search-box{ position:relative; }
  .search-box::before,
  .search-box::after{
    position:absolute; top:0; height:47px; width:34px;
    display:flex; align-items:center; justify-content:center;
    font-size:19px; font-weight:800; color:#33465c;
    -webkit-backdrop-filter:blur(5px); backdrop-filter:blur(5px);
    pointer-events:none; z-index:4;
    opacity:0; transition:opacity .25s;
  }
  .search-box::before{
    content:'\2039';                       /* ‹ */
    left:0; border-radius:14px 0 0 0;
    background:linear-gradient(90deg, rgba(255,255,255,.92) 30%, transparent);
  }
  .search-box::after{
    content:'\203A';                       /* › */
    right:0; border-radius:0 14px 0 0;
    background:linear-gradient(270deg, rgba(255,255,255,.92) 30%, transparent);
  }
  .search-box.tabs-more-l::before{ opacity:1; }
  .search-box.tabs-more-r::after{ opacity:1; }
}

/* ═══ MOBILE: tab cues v2 — unmistakable blue beacons ═══ */
@media (max-width:920px){
  .search-box::before,
  .search-box::after{
    color:#fff;
    font-size:15px;
    width:38px;
  }
  .search-box::before{
    background:
      radial-gradient(circle 11px at 55% 50%, #0066FF 96%, transparent 100%),
      linear-gradient(90deg, rgba(214,232,255,.95) 25%, rgba(214,232,255,0));
  }
  .search-box::after{
    background:
      radial-gradient(circle 11px at 45% 50%, #0066FF 96%, transparent 100%),
      linear-gradient(270deg, rgba(214,232,255,.95) 25%, rgba(214,232,255,0));
  }
}

/* ═══ MOBILE: weather strip — half the height, pocket cards ═══ */
@media (max-width:920px){
  .weather-strip{ padding:16px 12px !important; }
  .weather-inner{ gap:0 !important; }
  .ww-set{ gap:8px !important; padding-right:8px !important; }
  .ww-card{
    flex:0 0 96px !important; width:96px !important;
    padding:10px 10px 11px !important;
    border-radius:12px !important;
  }
  .ww-city{ font-size:9px !important; margin-bottom:4px !important; letter-spacing:.06em !important; }
  .ww-icon{ font-size:16px !important; margin-bottom:2px; }
  .ww-temp{ font-size:17px !important; }
  .ww-cond{ font-size:8.5px !important; margin-top:2px !important; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .ww-title, .ww-title-ic{ font-size:11px !important; }
}

/* ═══ MOBILE: client stories v4 — WHITE cards, true in-place stack ═══ */
@media (max-width:920px){
  .testi-track.tstack{
    display:block !important;
    position:relative !important;
    height:310px !important;
    overflow:visible !important;
    padding:10px 6vw 26px !important;
    touch-action:pan-y;
  }
  .testi-track.tstack .tcard-t{
    position:absolute !important;
    left:6vw; right:6vw;
    width:auto !important; max-width:none !important;
    height:272px !important;
    margin:0 !important;
    flex:none !important;
    rotate:none !important; translate:none !important;

    /* WHITE card, ink text */
    background:#FFFFFF !important;
    border:1px solid rgba(10,21,38,.08) !important;
    box-shadow:0 16px 36px rgba(10,21,38,.18) !important;
    border-radius:18px !important;
    overflow:hidden;
  }
  .testi-track.tstack .tcard-t::before{ color:rgba(0,102,255,.12) !important; }
  .testi-track.tstack .tcard-t::after{
    background:linear-gradient(90deg,#0066FF,#59C2FF) !important;
  }
  .testi-track.tstack .tcard-quote,
  .testi-track.tstack .tcard-text{ color:#33475B !important; }
  .testi-track.tstack .t-name{ color:#0A1526 !important; }
  .testi-track.tstack .t-detail{ color:#7C8B9D !important; }
  .testi-track.tstack .t-av{ border-color:rgba(0,102,255,.35) !important; }
}

/* ═══ MOBILE: search button — trimmed to match the card's vibe ═══ */
@media (max-width:920px){
  .search-go{
    padding:11px 14px !important;
    font-size:13.5px !important;
    border-radius:11px !important;
    margin-top:0 !important;
  }
  .search-go svg, .search-go .ti{ width:15px; height:15px; }
}

/* ═══ MOBILE: Search button = More Packages button, twins ═══ */
@media (max-width:920px){
  .search-go{
    width:auto !important;
    align-self:center !important;
    margin:2px auto 0 !important;
    padding:13px 34px !important;
    font-size:14px !important;
    border-radius:100px !important;
    display:inline-flex !important; align-items:center; gap:9px;
  }
}

/* ═══ MOBILE: search button — genuinely SMALL this time ═══ */
@media (max-width:920px){
  .search-go{
    padding:9px 22px !important;
    font-size:12.5px !important;
    gap:6px !important;
  }
  .search-go svg, .search-go .ti{ width:13px !important; height:13px !important; }
}

/* ═══ MOBILE: search button — the full-width force is dead ═══
      An older rule (.sp-fields .search-go{flex:1 1 100%}) was
      overpowering every size change. Overridden at the source. */
@media (max-width:920px){
  .sp-fields .search-go, .search-go{
    flex:0 0 auto !important;
    width:auto !important;
    min-width:0 !important;
    align-self:center !important;
    margin:2px auto 0 !important;
    padding:9px 24px !important;
    font-size:12.5px !important;
    border-radius:100px !important;
  }
}

/* ═══ MOBILE: Search button — exact clone of More Packages ═══ */
@media (max-width:920px){
  .sp-fields .search-go, .search-go{
    padding:15px 34px !important;
    font-size:15px !important;
    gap:10px !important;
    border-radius:100px !important;
    flex:0 0 auto !important;
    width:auto !important;
    align-self:center !important;
    margin:2px auto 0 !important;
  }
  .search-go svg, .search-go .ti{ width:16px !important; height:16px !important; }
}

/* ═══════════ RACAI CHAT — WHITE THEME (desktop + phone) ═══════════ */
.vai-chat{
  background:#FFFFFF !important;
  border:1px solid rgba(10,21,38,.10) !important;
  box-shadow:0 24px 60px rgba(4,12,28,.28) !important;
}
.chat-header{
  background:#FFFFFF !important;
  border-bottom:1px solid rgba(10,21,38,.08) !important;
}
.chat-hname{ color:#0A1526 !important; }
.chat-hsub{ color:#7C8B9D !important; }
.chat-hstate{ color:#16a34a !important; }
.chat-body{ background:#F7FAFD !important; }
.msg.ai .msg-bubble{
  background:#FFFFFF !important;
  color:#33475B !important;
  border:1px solid rgba(10,21,38,.07);
  box-shadow:0 2px 8px rgba(10,21,38,.05);
}
.msg.ai .msg-bubble b, .msg.ai .msg-bubble strong{ color:#FFFFFF !important; }
.msg.user .msg-bubble{ background:var(--azure) !important; color:#fff !important; }
.msg-time{ color:#9AA8B8 !important; }
.quick-chips .qchip{
  background:#FFFFFF !important;
  border:1.5px solid rgba(10,21,38,.14) !important;
  color:#33475B !important;
}
.quick-chips .qchip:hover, .quick-chips .qchip:active{
  border-color:var(--azure) !important;
  color:var(--azure) !important;
  background:#F0F6FF !important;
}
.chat-footer{
  background:#FFFFFF !important;
  border-top:1px solid rgba(10,21,38,.08) !important;
}
.chat-input{
  background:#F4F7FB !important;
  border:1.5px solid rgba(10,21,38,.10) !important;
  color:#0A1526 !important;
}
.chat-input::placeholder{ color:#94A3B5 !important; }
.chat-input:focus{ border-color:var(--azure) !important; background:#fff !important; }
.typing span{ background:#9AA8B8 !important; }




/* ═══ ROBOT: climbs up from BEHIND the search bar on load, then stands on it ═══ */

/* feet planted — no floating: a standing robot doesn't hover */
.search-box > .racbot{ animation:none; }

/* during the climb, everything below the bar's edge is hidden — as if
   the bar itself is in front of him. Open on top/sides so his leap
   above the edge is never cut off. */
.search-box > .racbot.rb-climb{ clip-path:inset(-80px -60px 0 -60px); pointer-events:none; }

.rb-climb .racbot-body{ animation:rbClimbUp 3.4s cubic-bezier(.45,.6,.4,1) both; }
@keyframes rbClimbUp{
  0%   { transform:translateY(162px); }                                /* hidden behind the bar */
  13%  { transform:translateY(80px) rotate(0deg); }                    /* head rises over the edge */
  19%  { transform:translateY(80px) rotate(-3deg); }                   /* peeks left...            */
  28%  { transform:translateY(79px) rotate(3deg); }                    /* ...peeks right           */
  36%  { transform:translateY(80px) rotate(0deg); }
  47%  { transform:translateY(94px) scaleY(.95); }                     /* dips: gathering strength */
  61%  { transform:translateY(-20px) scaleY(1.06) scaleX(.97); }       /* leaps above the bar      */
  71%  { transform:translateY(9px) scaleY(.88) scaleX(1.08); }         /* lands with a squash      */
  81%  { transform:translateY(-5px) scaleY(1.03) scaleX(.99); }        /* small rebound            */
  91%  { transform:translateY(2px) scaleY(.995); }
  100% { transform:translateY(0) scale(1); }                           /* standing on the bar      */
}

/* head gently nods left-right, always */
.racbot .rb-head{ transform-origin:50% 96%; animation:rbHeadNod 3.6s ease-in-out infinite; }
@keyframes rbHeadNod{
  0%,100%{ transform:translateX(-50%) rotate(-4deg); }
  50%    { transform:translateX(-50%) rotate(4deg); }
}


/* ═══ RACAI CHAT: every conversation bubble in the blue accent, text in white ═══ */
.msg.ai .msg-bubble{
  background:var(--azure) !important;
  color:#FFFFFF !important;
  border:none !important;
  box-shadow:0 4px 14px rgba(0,102,255,.22) !important;
}
.msg.user .msg-bubble{
  background:var(--azure) !important;
  color:#FFFFFF !important;
  box-shadow:0 4px 14px rgba(0,102,255,.22) !important;
}
/* bold words and links inside the bubbles stay readable on blue */
.msg-bubble b, .msg-bubble strong{ color:#FFFFFF !important; }
.msg-bubble .msg-link{ color:#FFFFFF !important; }
.msg-bubble .msg-link:hover{ color:#DCEAFF !important; }


/* ═══ RACAI BUBBLES: force plain WHITE text on everything inside —
       overrides any colors or highlight backgrounds the live reply
       brings along. Important words stay simply BOLD, nothing else. ═══ */
.msg-bubble,
.msg-bubble *{
  color:#FFFFFF !important;
  background:transparent !important;
  text-shadow:none !important;
}
.msg-bubble b, .msg-bubble strong{ font-weight:800 !important; }
.msg-bubble a, .msg-bubble .msg-link{
  color:#FFFFFF !important;
  text-decoration:underline; text-underline-offset:2px;
}


/* ═══ RACAI BUBBLES: bold words WHITE — max specificity so nothing outranks it ═══ */
.vai-chat .msg.ai .msg-bubble b, .vai-chat .msg.ai .msg-bubble strong,
.vai-chat .msg.user .msg-bubble b, .vai-chat .msg.user .msg-bubble strong,
.msg.ai .msg-bubble b, .msg.ai .msg-bubble strong,
.msg.user .msg-bubble b, .msg.user .msg-bubble strong{
  color:#FFFFFF !important;
}


/* ═══ EDGE CONTACT DOCK — wavy notch, buttons burst from the tab, no card ═══ */
.edock{ position:fixed; right:0; top:auto; bottom:96px; transform:none; z-index:9999; }

/* slim wavy notch tab, hugging the edge (lower-right, not middle) */
.edock-tab{
  position:relative; width:20px; height:66px; border:none; padding:0; cursor:none;
  border-radius:14px 0 0 14px; color:#fff;
  background:rgba(10,21,38,.48);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  box-shadow:-2px 3px 12px rgba(5,12,30,.22);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.edock-tab::before,
.edock-tab::after{ content:''; position:absolute; right:0; width:12px; height:12px; pointer-events:none; }
.edock-tab::before{ top:-12px;    background:radial-gradient(circle at 0 0,    rgba(0,0,0,0) 11.5px, rgba(10,21,38,.48) 12px); }
.edock-tab::after{  bottom:-12px; background:radial-gradient(circle at 0 100%, rgba(0,0,0,0) 11.5px, rgba(10,21,38,.48) 12px); }
.edock-tab:hover{ background:rgba(10,21,38,.66); }
.edock-tab svg{ width:14px; height:14px; transition:transform .3s; }
.edock.open .edock-tab svg{ transform:rotate(180deg); }

/* the "panel" is now just an invisible grid frame — NO background card */
.edock-panel{
  position:absolute; right:28px; top:50%; transform:translateY(-50%);
  display:grid; grid-template-columns:repeat(2, 46px); grid-auto-rows:46px; gap:6px;
  padding:0; background:none; border:none; box-shadow:none;
  pointer-events:none;
}
.edock.open .edock-panel{ pointer-events:auto; }

/* each button starts AT THE TAB (its own offset --sx/--sy points there),
   tiny and invisible, then springs out to its grid spot */
.ed-item{
  border:none; padding:0; background:transparent; cursor:none; text-decoration:none;
  width:100%; height:100%;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  opacity:0;
  transform:translate(var(--sx), var(--sy)) scale(.2);
  transition:
    transform .46s cubic-bezier(.3,1.35,.4,1) var(--d,0s),
    opacity .2s ease var(--d,0s);
}
.edock.open .ed-item{ opacity:1; transform:translate(0,0) scale(1); }
.ed-item:hover .ed-ic{ transform:scale(1.1); }

/* burst origin: the tab sits right of the grid, at its vertical middle */
.ed-item:nth-child(1){ --sx:92px; --sy: 52px; --d:.00s; }  /* WhatsApp  */
.ed-item:nth-child(2){ --sx:40px; --sy: 52px; --d:.04s; }  /* Call      */
.ed-item:nth-child(3){ --sx:92px; --sy:  0px; --d:.08s; }  /* Messenger */
.ed-item:nth-child(4){ --sx:40px; --sy:  0px; --d:.12s; }  /* Email     */
.ed-item:nth-child(5){ --sx:92px; --sy:-52px; --d:.16s; }  /* RacAi     */
.ed-item:nth-child(6){ --sx:40px; --sy:-52px; --d:.20s; }  /* Top       */

/* icons only — labels hidden (kept in markup for screen readers) */
.ed-lb{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap;
}
.ed-ic{
  width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#fff;
  transition:transform .18s;
}
.ed-ic svg{ width:18px; height:18px; }

/* brand colors — no glow; a crisp white ring + small shadow reads
   cleanly on ANY background, dark or light */
.ed-ic{ box-shadow:0 0 0 2px rgba(255,255,255,.95), 0 3px 10px rgba(5,12,30,.3); }
.ed-wa   .ed-ic{ background:#25D366; }
.ed-call .ed-ic{ background:var(--azure); }
.ed-msgr .ed-ic{ background:linear-gradient(45deg,#0099FF 0%,#A033FF 60%,#FF5280 100%); }
.ed-mail .ed-ic{ background:#EA4335; }
.ed-rac  .ed-ic{ background:linear-gradient(145deg,#12224A 0%,#0A1526 100%); }
.ed-top  .ed-ic{ background:#33465C; }

@media (max-width:920px){
  .edock{ bottom:84px; }
  .edock-panel{ grid-template-columns:repeat(2, 44px); grid-auto-rows:44px; right:22px; }
  .edock-tab{ width:18px; height:60px; }
  .ed-item:nth-child(1){ --sx:88px; --sy: 50px; }
  .ed-item:nth-child(2){ --sx:38px; --sy: 50px; }
  .ed-item:nth-child(3){ --sx:88px; --sy:  0px; }
  .ed-item:nth-child(4){ --sx:38px; --sy:  0px; }
  .ed-item:nth-child(5){ --sx:88px; --sy:-50px; }
  .ed-item:nth-child(6){ --sx:38px; --sy:-50px; }
}


/* ═══ SEARCH CARD — PHONE + NARROW-WINDOW FIXES ═══ */

/* A) Narrow windows and tablets (921–1120px): fields WRAP onto new rows
      instead of crushing into unreadable slivers. Full-width desktop
      (1121px and up) is untouched. */
@media (min-width:921px) and (max-width:1120px){
  .sp-fields{ flex-wrap:wrap; row-gap:10px; padding:14px 16px; min-height:0; }
  .sp-fields .sf{ flex:1 1 190px; min-width:170px; }
  .sp-fields .sf-wide{ flex:1 1 100%; }
  .sp-fields .search-go{ flex:1 1 100%; justify-content:center; }
}

/* B) Phones (up to 920px) */
@media (max-width:920px){
  /* Transport: the mobile display:flex !important on .sp-fields was
     overriding the tab's own show/hide logic, so BOTH the Car Rentals
     and Airport Transfers field groups rendered at once (the stray
     "Arrival airport" under Get price). Hidden groups now stay hidden. */
  #tr-rent-fields[style*="none"],
  #tr-xfer-fields[style*="none"],
  #tr-rent-meta[style*="none"],
  #tr-dropf[style*="none"]{ display:none !important; }

  /* Transport capsule: mode chips keep their row; the "Drop off at a
     different location" checkbox gets its OWN full row instead of
     wrapping into a four-line tower */
  .sp-capsule{ width:100%; border-radius:16px; row-gap:8px; }
  .sp-capsule .cap-div{ display:none; }
  .sp-capsule .chk{ flex:1 1 100%; font-size:12.5px; padding:2px 4px; white-space:nowrap; }
  .sp-capsule .seg{ flex-wrap:wrap; }
}


/* ═══ HOTELS PANEL: button on its own line, fields never crush (ALL widths) ═══ */
.spanel[data-panel="hotels"] .sp-fields{ flex-wrap:wrap; row-gap:10px; }
.spanel[data-panel="hotels"] .sp-fields .sf{ flex:1 1 150px; min-width:150px; }
.spanel[data-panel="hotels"] .sp-fields .sf-wide{ flex:1 1 100%; }
.spanel[data-panel="hotels"] .sp-fields .sf-pax{ flex:1 1 185px; min-width:185px; }
.spanel[data-panel="hotels"] .pax-trigger span{ white-space:nowrap; }
.spanel[data-panel="hotels"] .sp-fields .search-go{
  flex:1 1 100% !important; width:100% !important;
  justify-content:center; margin-top:4px;
}


/* ═══ TAB EDGE CUES v3 — no blue circle, no boxy blur ═══
   The chevron itself is now the blue arrow, and a soft mask fades the
   whole overlay (frost, tint AND blur) to nothing toward the inside,
   so there is no rectangle edge at all. */
@media (max-width:920px){
  .search-box::before,
  .search-box::after{
    color:#0066FF; font-size:21px; font-weight:900;
    width:46px; text-shadow:0 1px 2px rgba(255,255,255,.9);
    -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  }
  .search-box::before{
    justify-content:flex-start; padding-left:7px;
    background:linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.7) 38%, rgba(255,255,255,0) 100%);
    -webkit-mask-image:linear-gradient(90deg, #000 0%, #000 40%, transparent 100%);
    mask-image:linear-gradient(90deg, #000 0%, #000 40%, transparent 100%);
  }
  .search-box::after{
    justify-content:flex-end; padding-right:7px;
    background:linear-gradient(270deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.7) 38%, rgba(255,255,255,0) 100%);
    -webkit-mask-image:linear-gradient(270deg, #000 0%, #000 40%, transparent 100%);
    mask-image:linear-gradient(270deg, #000 0%, #000 40%, transparent 100%);
  }
}


/* ═══ TAB EDGE CUES v4 — larger WHITE arrow, dark frost, centred in the tab row ═══ */
@media (max-width:920px){
  .search-box::before,
  .search-box::after{
    color:#FFFFFF; font-size:26px; font-weight:900; line-height:1;
    width:50px; height:47px;
    align-items:center;                 /* vertically middle of the tab strip */
    text-shadow:0 1px 3px rgba(5,12,30,.45);
    -webkit-backdrop-filter:blur(7px); backdrop-filter:blur(7px);
  }
  .search-box::before{
    justify-content:flex-start; padding-left:8px;
    background:linear-gradient(90deg, rgba(10,21,38,.62) 0%, rgba(10,21,38,.4) 40%, rgba(10,21,38,0) 100%);
    -webkit-mask-image:linear-gradient(90deg, #000 0%, #000 42%, transparent 100%);
    mask-image:linear-gradient(90deg, #000 0%, #000 42%, transparent 100%);
  }
  .search-box::after{
    justify-content:flex-end; padding-right:8px;
    background:linear-gradient(270deg, rgba(10,21,38,.62) 0%, rgba(10,21,38,.4) 40%, rgba(10,21,38,0) 100%);
    -webkit-mask-image:linear-gradient(270deg, #000 0%, #000 42%, transparent 100%);
    mask-image:linear-gradient(270deg, #000 0%, #000 42%, transparent 100%);
  }
}


/* ═══ TAB EDGE CUES v5 — true navy dark, height locked to the tab row ═══
   --tabsH is measured live from the strip itself, so the frost covers
   exactly the scrollable heading section — never taller, never shorter. */
@media (max-width:920px){
  .search-box::before,
  .search-box::after{
    height:var(--tabsH, 42px);
    color:#0066FF; font-size:32px; font-weight:900; line-height:1;
    width:50px; align-items:center;
    text-shadow:0 1px 2px rgba(255,255,255,.8);
    -webkit-backdrop-filter:blur(7px); backdrop-filter:blur(7px);
  }
  .search-box::before{
    background:linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.72) 45%, rgba(255,255,255,0) 100%);
    -webkit-mask-image:linear-gradient(90deg, #000 0%, #000 45%, transparent 100%);
    mask-image:linear-gradient(90deg, #000 0%, #000 45%, transparent 100%);
  }
  .search-box::after{
    background:linear-gradient(270deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.72) 45%, rgba(255,255,255,0) 100%);
    -webkit-mask-image:linear-gradient(270deg, #000 0%, #000 45%, transparent 100%);
    mask-image:linear-gradient(270deg, #000 0%, #000 45%, transparent 100%);
  }
}


/* ═══ RACAI CHAT HEADER: the robot head directly — no tile, no border ═══ */
.chat-avatar{
  background:none !important; border:none !important;
  box-shadow:none !important; border-radius:0 !important;
}
.chat-avatar svg{ width:32px; height:32px; display:block; }
/* dark visor + white head need a touch of contrast on the white header */
.chat-avatar svg rect[fill="#FFFFFF"]{ fill:#E8EEF6; }
.chat-avatar svg{ filter:drop-shadow(0 1px 2px rgba(10,21,38,.25)); }


/* ═══ DESTINATIONS PAGE CARDS: uniform names, white price, blue Explore ═══
   Scoped to .dest-all-grid only — the homepage Featured bento keeps its
   big first card exactly as it is. */

/* 1 · every country name the SAME size (kills the 38px first-card rule) */
.dest-all-grid .dc .dc-city,
.dest-all-grid .dc:nth-child(1) .dc-city{
  font-size:clamp(19px,1.4vw,23px) !important;
}

/* 2 · starting price in white */
.dest-all-grid .dc-price{ color:#FFFFFF !important; }

/* 3 · Explore button on hover: blue with white text */
.dest-all-grid .dc:hover .dc-hover-btn{
  background:var(--azure); color:#FFFFFF;
  box-shadow:0 6px 18px rgba(0,102,255,.4);
}


/* ═══ HOMEPAGE FEATURED BENTO: same color treatment as destinations page ═══
   Prices in white, Explore hover in blue — sizes and layout untouched. */
.dest-grid .dc-price{ color:#FFFFFF !important; }
.dest-grid .dc:hover .dc-hover-btn{
  background:var(--azure); color:#FFFFFF;
  box-shadow:0 6px 18px rgba(0,102,255,.4);
}


/* ═══ HERO KPI ROW v5: gaps 1 and 2 approved — gap 3 matched to them ═══
   The third gap only LOOKED bigger because "VISA SUCCESS RATE" is a
   long label: the "5" starts after the label ends, far from "98%".
   The 4th block is pulled left so the visible distance from 98% to 5
   matches the first two gaps. Labels sized to the hero sub-heading. */
.hero-kpis{
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  gap:clamp(40px, 3.2vw, 54px);
}
.hero-kpis > div{ flex:0 0 auto; text-align:left; }
.hero-kpis > div:nth-child(4){ margin-left:calc(clamp(40px, 3.2vw, 54px) * -0.55); }

@media (min-width:921px){
  .kpi-lbl{
    font-size:10.5px;               /* smaller than before */
    letter-spacing:.08em;
    white-space:nowrap;
    margin-top:5px;
  }
}
@media (max-width:920px){
  .hero-kpis > div:nth-child(4){ margin-left:0; }  /* phone 2x2 grid untouched */
}


/* ═══ MACBOOK PASS (laptop band 921-1599px ONLY — large desktops unchanged) ═══ */
@media (min-width:921px) and (max-width:1599px){

  /* 1 · Date fields enlarged: bigger date text and a bigger calendar
     trigger icon across every panel of the search card. (The popup
     calendar itself is drawn by the browser and follows page zoom —
     the field and its trigger are what a stylesheet can grow.) */
  .sf input[type="date"]{
    font-size:17px; font-weight:600; letter-spacing:.01em;
  }
  .sf input[type="date"]::-webkit-calendar-picker-indicator{
    transform:scale(1.4); cursor:pointer; opacity:.75;
  }
  .sf input[type="date"]::-webkit-calendar-picker-indicator:hover{ opacity:1; }

  /* 2 · Section robot: stands OUTSIDE the chat box, in the margin to
     its right — no more overlapping the typing bar */
  .racbot-sec{ right:0px; bottom:30px; }
  .racbot-sec .racbot-bubble{ right:40px; }
}


/* ═══ COUNTRY PAGE, DESKTOP: "See all" + FULL-SCREEN package popup ═══ */
@media (max-width:920px){ .cf-seeall-wrap{ display:none; } }  /* phones use their own View All tile */
@media (min-width:921px){
  .cf-seeall-wrap{ text-align:center; margin:26px 0 4px; }
  .cf-seeall{
    border:none; cursor:pointer; border-radius:100px;
    padding:13px 34px; font-size:14px; font-weight:800; letter-spacing:.02em;
    background:var(--cp, var(--azure)); color:#fff;      /* each country's own theme color */
    box-shadow:0 8px 24px rgba(10,21,38,.28);
    transition:transform .18s, box-shadow .18s, filter .18s;
  }
  .cf-seeall:hover{ transform:translateY(-2px); filter:brightness(1.1); box-shadow:0 12px 30px rgba(10,21,38,.36); }

  /* FULL-SCREEN popup: every package visible at once, no scrolling */
  .pkall{ position:fixed; inset:0; z-index:1500; background:#F7FAFD; }
  .pkall.open{ display:flex; flex-direction:column; }
  .pkall-head{
    flex:0 0 auto; background:#fff;
    padding:16px 30px; display:flex; align-items:center; gap:14px;
    border-bottom:3px solid var(--cp, var(--azure));
  }
  .pkall-title{ font-family:'Fraunces',serif; font-size:23px; font-weight:700; color:#0A1526; }
  .pkall-back{
    order:2; margin-left:auto; border:none; cursor:pointer;
    width:38px; height:38px; border-radius:50%;
    background:var(--cp, var(--azure)); color:#fff; font-size:21px; line-height:1;
    display:flex; align-items:center; justify-content:center;
    transition:filter .15s;
  }
  .pkall-back:hover{ filter:brightness(1.12); }
  .pkall-grid{
    flex:1 1 auto; min-height:0; overflow:auto;
    padding:22px 30px 28px;
    display:grid; grid-template-columns:repeat(4, 300px); grid-auto-rows:max-content;
    gap:18px; justify-content:center; align-content:start;
  }
  /* the country-page coverflow card, freed from the carousel: natural size,
     centred columns, never stretched to the screen edges */
  .pkall-grid .cf-card{
    position:static !important; left:auto !important; top:auto !important;
    width:100% !important; transform:none !important; opacity:1 !important;
    border-radius:20px; overflow:hidden;
    box-shadow:0 14px 36px rgba(8,16,28,.14);
  }
  .pkall-grid .cf-card:hover{ box-shadow:0 20px 48px rgba(8,16,28,.22); }
  @media (max-width:1360px){ .pkall-grid{ grid-template-columns:repeat(3, 300px); } }
}
