/* TravJey — Main Stylesheet */

/* ════════════════════════════════════
   TOKENS & RESET
════════════════════════════════════ */
:root {
  --bg:       #030914;
  --bg2:      #060D1F;
  --bg3:      #0B1530;
  --surface:  rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.07);
  --border:   rgba(255,255,255,.08);
  --border2:  rgba(255,255,255,.14);
  --blue:     #3B82F6;
  --blue-l:   #60A5FA;
  --blue-d:   #1D4ED8;
  --blue-g:   rgba(59,130,246,.25);
  --purple:   #8B5CF6;
  --teal:     #14B8A6;
  --gold:     #F59E0B;
  --text:     #F1F5F9;
  --text2:    #94A3B8;
  --text3:    #475569;
  --mx:       50%; --my:50%;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media(hover:none){ body { cursor: auto; } }
h1,h2,h3,h4,h5 { font-family: 'Syne', sans-serif; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: none; font-family: 'DM Sans', sans-serif; border: none; background: none; }
input, select, textarea { font-family: 'DM Sans', sans-serif; }

/* ════════════════════════════════════
   NOISE TEXTURE OVERLAY
════════════════════════════════════ */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9990;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ════════════════════════════════════
   SVG ICON SYSTEM
════════════════════════════════════ */
.icon {
  display: inline-block; flex-shrink: 0;
  width: 1em; height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  stroke: currentColor;
  overflow: visible;
}
/* Nav chevron — rotate on hover */
.nav-a .icon { font-size: 10px; opacity: .55; transition: transform .2s; }
.nav-item:hover .nav-a .icon { transform: rotate(180deg); }
/* Nav dropdown icon */
.nav-drop a .icon { color: var(--blue); font-size: 12px; width: 16px; flex-shrink: 0; }
/* Footer payment icons */
.fb-pay .icon { font-size: 26px; color: var(--text3); }
/* Toast icon */
#toast .icon { color: var(--blue); font-size: 16px; flex-shrink: 0; }
/* Step icons in features section */
.step-icon .icon { font-size: 22px; }
/* Feature card gc-icon */
.gc-icon .icon { font-size: 22px; color: #fff; }
/* Activity row icon */
.act-ico .icon { font-size: 18px; color: var(--blue); }
/* Social icons in footer */
.f-soc .icon { font-size: 14px; }
/* ci-ico contact icon */
.ci-ico .icon { font-size: 14px; color: var(--blue); }
/* Breadcrumb chevron */
.bc li .icon { font-size: 8px; opacity: .5; }
/* Stats scroll-to-top button */
#stb .icon { font-size: 16px; color: #fff; }
/* Buttons */
.btn .icon, .nav-cta .icon, .sf-btn .icon { font-size: 14px; flex-shrink: 0; }
/* Inline text icons (meta, labels) */
.dd-pill .icon, .am-it .icon, .f-ci .icon, .ob-meta .icon, .hf-dot .icon { font-size: 11px; }
.tc-meta .icon { font-size: 11px; color: rgba(255,255,255,.5); }
/* Mobile menu icons */
.mob a .icon { font-size: 12px; color: var(--blue); width: 16px; flex-shrink: 0; }
/* Destination pill */
.hero-pill .icon { font-size: 9px; }
/* Stb scroll-up */

/* ════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════ */
#cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); pointer-events: none;
  will-change: transform; margin-top: -3px; margin-left: -3px;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9997;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(59,130,246,.5);
  pointer-events: none; will-change: transform;
  margin-top: -18px; margin-left: -18px;
  transition: width .2s, height .2s, border-color .2s, background .2s, margin .2s;
}
#cursor-ring.hovering {
  width: 52px; height: 52px;
  margin-top: -26px; margin-left: -26px;
  border-color: rgba(59,130,246,.3);
  background: rgba(59,130,246,.06);
}
#cursor-ring.clicking { width: 26px; height: 26px; margin-top: -13px; margin-left: -13px; }
@media(hover:none){ #cursor-dot, #cursor-ring { display: none; } }

/* ════════════════════════════════════
   PAGE TRANSITION OVERLAY
════════════════════════════════════ */
#pt-overlay {
  position: fixed; inset: 0; z-index: 8000;
  background: var(--bg); opacity: 0; pointer-events: none;
}

/* ════════════════════════════════════
   LAYOUT
════════════════════════════════════ */
.W { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.sec { padding: 120px 0; }
.sec-sm { padding: 80px 0; }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0 48px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .3s;
}
#hdr::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(3,9,20,.82);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  z-index: -1;
  transition: opacity .3s;
}
#hdr.transparent::before { opacity: 0; }

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 34px; height: 34px; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0,100% 0,100% 80%,80% 100%,0 100%);
  flex-shrink: 0;
}
.logo-icon svg { width: 18px; height: 18px; }
.logo-word {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: -.3px; color: var(--text);
}
.logo-word em { color: var(--blue); font-style: normal; }

/* Nav links */
.nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-a {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 14px; border-radius: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--text2);
  letter-spacing: .2px; transition: all .18s;
}
/* nav-a icon now handled in SVG Icon System above */
/* handled above */
.nav-a:hover, .nav-item.on .nav-a { color: var(--text); background: var(--surface); }
.nav-drop {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: rgba(6,13,31,.95); backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  min-width: 220px; padding: 6px; border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5); z-index: 10;
}
.nav-item:hover .nav-drop { display: block; }
.nav-drop a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 13px; font-size: 13.5px; font-weight: 500;
  color: var(--text2); border-radius: 8px; transition: all .15s;
}
/* nav-drop icon handled in SVG Icon System above */
.nav-drop a:hover { color: var(--text); background: var(--surface2); }

/* CTA header button */
.nav-cta {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 8px; margin-left: 8px;
  background: var(--blue); color: #fff;
  font-size: 13.5px; font-weight: 700; letter-spacing: .3px;
  transition: all .2s; position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
}
.nav-cta:hover { background: var(--blue-l); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,.4); color: #fff; }
.hbg { display: none; color: var(--text); font-size: 20px; padding: 8px; }

/* Mobile menu */
.mob {
  display: none; flex-direction: column;
  position: fixed; inset: 0; z-index: 850;
  background: rgba(3,9,20,.97); backdrop-filter: blur(24px);
  padding: 100px 32px 40px; overflow-y: auto;
}
.mob.open { display: flex; }
.mob-x { position: absolute; top: 22px; right: 24px; color: var(--text2); font-size: 22px; }
.mob a {
  color: var(--text2); font-size: 16px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
  transition: color .15s;
}
.mob a i { color: var(--blue); font-size: 11px; width: 16px; }
.mob a:hover { color: var(--text); }

/* ════════════════════════════════════
   BUTTONS (global)
════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: .3px;
  transition: all .22s; border: none; cursor: none;
  position: relative; overflow: hidden; text-decoration: none;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 50%);
  opacity: 0; transition: opacity .2s;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff; box-shadow: 0 0 0 0 rgba(59,130,246,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,130,246,.45); color: #fff; }
.btn-glass {
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); backdrop-filter: blur(12px);
}
.btn-glass:hover { background: var(--surface2); border-color: var(--border2); transform: translateY(-1px); color: var(--text); }
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 8px; }
.magnetic { transition: transform .3s cubic-bezier(.23,1,.32,1); }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 100px;
}
/* Animated gradient background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 80% at var(--mx) var(--my),
    rgba(59,130,246,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%,
    rgba(139,92,246,.08) 0%, transparent 50%);
  transition: background 0.8s ease;
}
/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px; left: -100px; top: -200px;
  background: radial-gradient(circle, rgba(59,130,246,.18) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px; right: -50px; top: 100px;
  background: radial-gradient(circle, rgba(139,92,246,.14) 0%, transparent 70%);
  animation: orbFloat2 16s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px; left: 40%; bottom: -100px;
  background: radial-gradient(circle, rgba(20,184,166,.1) 0%, transparent 70%);
  animation: orbFloat3 14s ease-in-out infinite;
}
@keyframes orbFloat1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(40px,-30px)} 66%{transform:translate(-20px,50px)} }
@keyframes orbFloat2 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-50px,30px)} 66%{transform:translate(30px,-40px)} }
@keyframes orbFloat3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-40px,-20px)} }

/* Grid lines bg */
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 0%, transparent 100%);
}

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

/* Eyebrow pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 32px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.25);
  font-size: 12px; font-weight: 600; color: var(--blue-l);
  letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-pill .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }

/* Hero heading */
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -2px; margin-bottom: 28px;
  overflow: hidden;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; }
.hero-title .gradient-word {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-l) 50%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtitle */
.hero-sub {
  font-size: 18px; font-weight: 300; color: var(--text2);
  line-height: 1.75; max-width: 480px; margin-bottom: 44px;
}

/* Hero buttons */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

/* Hero stats */
.hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hs { }
.hs-n {
  font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, var(--text2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.hs-l { font-size: 12px; color: var(--text3); margin-top: 5px; font-weight: 500; }

/* Hero right column */
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); height: 520px;
  transform-style: preserve-3d;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,9,20,.7) 0%, transparent 50%);
}
/* Floating cards on hero image */
.hero-float {
  position: absolute; z-index: 10;
  background: rgba(6,13,31,.85); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 16px 20px;
}
.hero-float-1 { bottom: 28px; left: -32px; }
.hero-float-2 { top: 40px; right: -32px; }
.hf-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 5px; }
.hf-val { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); }
.hf-sub { font-size: 12px; color: var(--text2); margin-top: 3px; }
.hf-dot { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #4ADE80; margin-top: 6px; }
.hf-dot::before { content:""; width:7px; height:7px; background:#4ADE80; border-radius:50%; flex-shrink:0; animation:pulse 2s infinite; display:block; }

/* ════════════════════════════════════
   SEARCH SECTION
════════════════════════════════════ */
.search-sec {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.search-card {
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(20px);
}
.search-tabs { display: flex; border-bottom: 1px solid var(--border); }
.s-tab {
  padding: 16px 24px; font-size: 13px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; color: var(--text3); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all .18s; background: none; cursor: none;
}
.s-tab.on { color: var(--blue); border-bottom-color: var(--blue); }
.s-tab:hover:not(.on) { color: var(--text2); }
.search-grid { display: grid; grid-template-columns: 1fr 1fr 1fr .9fr auto; }
.sf-item { border-right: 1px solid var(--border); }
.sf-item:last-child { border-right: none; }
.sf-lbl {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text3);
  padding: 16px 24px 0;
}
.sf-item select, .sf-item input {
  width: 100%; border: none; outline: none;
  background: transparent; color: var(--text);
  padding: 8px 24px 18px;
  font-size: 14.5px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.sf-item select { appearance: none; cursor: none; }
.sf-item select option { background: var(--bg2); }
input[type="date"] { color-scheme: dark; }
.sf-btn {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  color: #fff; border: none; padding: 0 40px;
  font-size: 14px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  cursor: none; display: flex; align-items: center; gap: 9px;
  transition: all .2s; white-space: nowrap; position: relative; overflow: hidden;
}
.sf-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
}
.sf-btn:hover { filter: brightness(1.1); box-shadow: 0 0 40px rgba(59,130,246,.4); }

/* ════════════════════════════════════
   MARQUEE / TRUST STRIP
════════════════════════════════════ */
.marquee-sec {
  padding: 28px 0; border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.marquee-sec::before, .marquee-sec::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee-sec::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.marquee-sec::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  animation: marqueeRun 22s linear infinite; width: max-content;
}
.marquee-sec:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeRun { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.airline-tag {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text3);
  white-space: nowrap; letter-spacing: .3px; flex-shrink: 0;
  transition: color .2s;
}
.airline-tag:hover { color: var(--text2); }
.airline-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border2); }

/* ════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════ */
.sh { margin-bottom: 64px; }
.sh.centered { text-align: center; }
.sh.centered .sh-sub { margin: 0 auto; }
.sh-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.sh-eyebrow::before, .sh-eyebrow::after {
  content: ''; display: inline-block; width: 16px; height: 1px; background: var(--blue); opacity: .6;
}
.sh-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px,4vw,54px); font-weight: 700;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px;
}
.sh-title .gr {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sh-sub { font-size: 16px; color: var(--text2); line-height: 1.8; max-width: 520px; font-weight: 300; }

/* ════════════════════════════════════
   GLASS CARDS (3D tilt)
════════════════════════════════════ */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  will-change: transform;
}
.glass-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.glass-card .card-shine {
  position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.05), transparent 70%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.glass-card:hover { border-color: var(--border2); box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(59,130,246,.15); }
.glass-card:hover .card-shine { opacity: 1; }
.gc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px; color: #fff;
  box-shadow: 0 8px 24px rgba(59,130,246,.35);
  transition: transform .3s, box-shadow .3s;
}
.glass-card:hover .gc-icon { transform: translateY(-2px) translateZ(20px); box-shadow: 0 16px 40px rgba(59,130,246,.45); }
.gc-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.gc-body { font-size: 14px; color: var(--text2); line-height: 1.7; }
.gc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--blue);
  margin-top: 18px; transition: gap .2s;
}
.gc-link:hover { gap: 10px; }

/* ════════════════════════════════════
   DESTINATION CARDS
════════════════════════════════════ */
.dest-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.dc {
  position: relative; border-radius: 18px; overflow: hidden;
  cursor: none;
  background-size: 100%; background-position: center;
  background-color: var(--bg3);
  transition: background-size .7s cubic-bezier(.25,.46,.45,.94);
}
.dc:hover { background-size: 107%; }
.dc-main { height: 480px; }
.dc-sm { height: 220px; }
/* Keep img rules for non-dc images that share dc parent */
.dc img.dc-photo { width:100%; height:100%; object-fit:cover; display:block; }
.dc-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,9,20,.88) 0%, rgba(3,9,20,.25) 48%, transparent 100%);
  transition: background .35s;
}
.dc:hover .dc-ov { background: linear-gradient(to top, rgba(3,9,20,.94) 0%, rgba(3,9,20,.45) 58%, rgba(59,130,246,.08) 100%); }
.dc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 26px; z-index: 2; }
.dc-eyebrow { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-l); font-weight: 700; margin-bottom: 6px; }
.dc-city { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.dc-sm .dc-city { font-size: 18px; }
.dc-meta { font-size: 13px; color: rgba(255,255,255,.5); }
.dc-price {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--blue-l);
  margin-top: 10px; opacity: 0; transform: translateY(8px);
  transition: all .3s .05s;
}
.dc:hover .dc-price { opacity: 1; transform: translateY(0); }
.dc-badge {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: rgba(59,130,246,.9); backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 99px;
  font-size: 11px; font-weight: 800; color: #fff; letter-spacing: 1px; text-transform: uppercase;
}

/* ════════════════════════════════════
   STATS SECTION
════════════════════════════════════ */
.stats-sec {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 56px 40px; border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background .2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface); }
.stat-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0); transition: transform .4s;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-n {
  font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--text2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 8px;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-sfx { font-size: 28px; color: var(--blue); -webkit-text-fill-color: var(--blue); }
.stat-l { font-size: 14px; color: var(--text3); }

/* ════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.step {
  padding: 44px 36px; background: var(--surface); border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: all .25s;
}
.step:hover { background: var(--surface2); border-color: var(--border2); }
.step:hover .step-num { opacity: .08; }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 100px; font-weight: 800;
  color: var(--blue); opacity: .04; position: absolute; top: 12px; right: 20px;
  line-height: 1; transition: opacity .3s;
  -webkit-background-clip: unset; -webkit-text-fill-color: unset;
}
.step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; font-size: 20px; color: var(--blue);
  transition: all .25s; position: relative; z-index: 1;
}
.step:hover .step-icon { border-color: var(--blue); background: rgba(59,130,246,.1); }
.step-title { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; }
.step-body { font-size: 14px; color: var(--text2); line-height: 1.7; position: relative; z-index: 1; }

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card {
  padding: 34px 30px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; position: relative; overflow: hidden;
  transition: all .25s; transform-style: preserve-3d;
}
.testi-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,.3); }
.testi-card::before {
  content: '"'; position: absolute; top: 12px; right: 24px;
  font-family: 'Syne', sans-serif; font-size: 80px; color: var(--blue); opacity: .1;
  line-height: 1;
}
.tc-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.tc-stars i { color: #F59E0B; font-size: 13px; }
.tc-text { font-size: 15px; color: var(--text2); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.tc-author { display: flex; align-items: center; gap: 13px; }
.tc-av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border2); }
.tc-name { font-size: 14.5px; font-weight: 700; color: var(--text); }
.tc-role { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* ════════════════════════════════════
   CTA
════════════════════════════════════ */
.cta-sec {
  position: relative; overflow: hidden;
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 120px 0;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(59,130,246,.12) 0%, transparent 70%);
}
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-title { font-family: 'Syne', sans-serif; font-size: clamp(36px,5vw,64px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-sub { font-size: 17px; color: var(--text2); max-width: 500px; margin: 0 auto 44px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════
   BLOG
════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; transition: all .28s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-6px); box-shadow: 0 28px 56px rgba(0,0,0,.35); }
/* Photo area — CSS background-image, no <img> needed */
.bc-photo {
  position: relative; overflow: hidden;
  height: 220px;
  background-size: 100%; background-position: center;
  background-color: var(--bg3);
  transition: background-size .65s cubic-bezier(.25,.46,.45,.94);
  flex-shrink: 0;
}
.blog-card:hover .bc-photo { background-size: 108%; }
.bc-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,9,20,.4) 0%, transparent 60%);
}
.bc-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(59,130,246,.9); backdrop-filter: blur(8px);
  padding: 4px 12px; border-radius: 99px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff;
}
.bc-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.bc-date { font-size: 11.5px; color: var(--text3); margin-bottom: 10px; }
.bc-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; flex: 1; }
.bc-title a:hover { color: var(--blue); }
.bc-body p { font-size: 13.5px; color: var(--text2); line-height: 1.65; margin-bottom: 18px; }
.bc-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--blue); transition: gap .2s; margin-top: auto; }
.bc-more:hover { gap: 10px; }

/* ════════════════════════════════════
   INNER PAGES — BANNER
════════════════════════════════════ */
.page-banner {
  padding: 130px 0 64px;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(59,130,246,.08) 0%, transparent 60%);
}
.pb-grid { position: absolute; inset: 0;
  background-image: linear-gradient(rgba(59,130,246,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-banner .W { position: relative; z-index: 2; }
.page-banner h1 { font-family: 'Syne', sans-serif; font-size: clamp(32px,5vw,60px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 14px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; }
.breadcrumb li { font-size: 12.5px; color: var(--text3); display: flex; align-items: center; gap: 8px; }
.breadcrumb li i { font-size: 8px; }
.breadcrumb li a { color: var(--text2); transition: color .15s; }
.breadcrumb li a:hover { color: var(--blue); }
.breadcrumb li:last-child { color: var(--blue); }
.pb-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }

/* ════════════════════════════════════
   SEARCH RESULTS PAGE
════════════════════════════════════ */
.sr-bg { background: var(--bg); min-height: 100vh; }
.sr-search-bar { background: var(--bg2); border-bottom: 1px solid var(--border); }
.sr-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 40px 0 80px; }
.sb-box { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px; margin-bottom: 14px; }
.sb-ttl { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sb-sub { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); margin: 14px 0 8px; }
.fo { display: flex; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text2); cursor: none; }
.fo input { accent-color: var(--blue); }
.fo:last-child { border-bottom: none; }
.flt {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 22px 26px; margin-bottom: 10px;
  display: grid; grid-template-columns: 120px 1fr 160px;
  gap: 22px; align-items: center; transition: all .2s;
}
.flt:hover { border-color: var(--border2); background: var(--surface2); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.flt.top { border-color: rgba(59,130,246,.35); background: rgba(59,130,246,.05); }
.flt-al { text-align: center; }
.flt-logo {
  width: 48px; height: 48px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 800;
  color: var(--blue); margin: 0 auto 7px;
}
.flt-aln { font-size: 12.5px; font-weight: 700; color: var(--text); }
.flt-cls { font-size: 11px; color: var(--text3); }
.flt-route { display: flex; align-items: center; gap: 16px; }
.ft-tm .t { font-size: 26px; font-weight: 800; color: var(--text); font-family: 'Syne', sans-serif; line-height: 1; }
.ft-tm .ap { font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.ft-mid { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ft-line { width: 100%; height: 1px; background: var(--border); position: relative; }
.ft-plane { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: var(--blue); font-size: 13px; background: var(--surface); padding: 0 4px; }
.flt:hover .ft-plane { background: var(--surface2); }
.ft-stops, .ft-dur { font-size: 11.5px; color: var(--text3); }
.flt-pr { text-align: right; border-left: 1px solid var(--border); padding-left: 22px; }
.fp-top { display: inline-block; background: var(--blue); color: #fff; font-size: 9.5px; font-weight: 800; padding: 3px 8px; border-radius: 5px; letter-spacing: .8px; margin-bottom: 5px; }
.fp-amt { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--text); line-height: 1; }
.fp-note { font-size: 11.5px; color: var(--text3); margin-bottom: 12px; }

/* ════════════════════════════════════
   DESTINATION DETAIL
════════════════════════════════════ */
.dd-hero { position: relative; height: 500px; overflow: hidden; background-size: cover; background-position: center; background-color: var(--bg3); }
.dd-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,9,20,.85) 0%, transparent 50%); }
.dd-hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 36px 28px; }
.dd-hero-content h1 { font-family: 'Syne', sans-serif; font-size: clamp(36px,5vw,62px); font-weight: 800; letter-spacing: -1.5px; color: #fff; margin-bottom: 12px; }
.dd-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.dd-pill {
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px; border-radius: 99px;
  font-size: 12.5px; color: #fff; display: flex; align-items: center; gap: 6px;
}
.dd-pill i { color: var(--blue-l); font-size: 10px; }
.dd-pill-price { background: var(--blue); border-color: var(--blue); font-weight: 700; }
.dd-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.dd-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-radius: 14px; overflow: hidden; height: 420px; margin-bottom: 36px; }
.dd-gallery > div:first-child { height: 100%; }
.dd-side { display: flex; flex-direction: column; gap: 8px; height: 100%; }
.dd-side img { flex: 1; object-fit: cover; width: 100%; }
.dd-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 30px; }
.dd-tab { padding: 11px 20px; font-size: 12.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--text3); cursor: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: .18s; }
.dd-tab.on { color: var(--blue); border-bottom-color: var(--blue); }
.dd-pane { display: none; }
.dd-pane.on { display: block; }
.dd-hl { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 22px 0; }
.hl { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px; text-align: center; }
.hl i { font-size: 22px; color: var(--blue); margin-bottom: 8px; display: block; }
.hl h5 { font-size: 13.5px; font-weight: 700; margin-bottom: 3px; }
.hl p { font-size: 11.5px; color: var(--text3); }
.mg { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.mc { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px 8px; text-align: center; }
.mc.best { background: rgba(59,130,246,.1); border-color: rgba(59,130,246,.3); }
.mc .mn { font-size: 12px; font-weight: 700; color: var(--text); }
.mc .mp { font-size: 11px; color: var(--blue); font-weight: 700; margin-top: 2px; }
.mc .ms { font-size: 10px; color: var(--text3); }
.bk-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px; position: sticky; top: 86px; }
.bk-panel h4 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 18px; }
.bk-in {
  width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; font-size: 13.5px; color: var(--text); font-family: 'DM Sans', sans-serif;
  outline: none; margin-bottom: 10px; transition: border-color .18s; color-scheme: dark;
}
.bk-in:focus { border-color: var(--blue); }
select.bk-in { appearance: none; cursor: none; }
.bk-in option { background: var(--bg3); }
input[type="date"].bk-in::-webkit-calendar-picker-indicator { filter: invert(.7) sepia(1) saturate(5) hue-rotate(175deg); cursor: pointer; }
.ip { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; }
.ip:last-child { border-bottom: none; }
.ip .k { color: var(--text3); }
.ip .v { color: var(--text); font-weight: 700; }

/* ════════════════════════════════════
   FAQ / CONTACT / FORMS
════════════════════════════════════ */
.faq-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; cursor: none; width: 100%; text-align: left; background: none; }
.faq-q h5 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); padding-right: 20px; }
.faq-q i { color: var(--blue); font-size: 14px; transition: transform .28s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 14.5px; line-height: 1.8; color: var(--text2); }
.faq-item.open .faq-a { display: block; }
.ct-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.ci-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 36px; }
.ci-panel h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.ci-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.ci-row:last-of-type { border-bottom: none; }
.ci-ico { width: 38px; height: 38px; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-ico i { color: var(--blue); font-size: 14px; }
.ci-row h6 { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text3); margin-bottom: 4px; }
.ci-row p, .ci-row a { font-size: 14px; color: var(--text2); line-height: 1.5; }
.ci-row a:hover { color: var(--blue); }
.form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 40px; }
.form-wrap h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--text2); margin-bottom: 28px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text3); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; padding: 13px 16px; font-size: 14px; color: var(--text); font-family: 'DM Sans', sans-serif; outline: none; transition: border-color .18s; color-scheme: dark; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,.1); }
.fg textarea { resize: vertical; min-height: 130px; }
.fg select { appearance: none; cursor: none; }
.fg select option { background: var(--bg3); }
.form-ok { display: none; align-items: center; gap: 8px; background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.3); border-radius: 10px; padding: 13px 16px; color: #4ADE80; font-weight: 600; font-size: 14px; margin-top: 14px; }
.form-ok.show { display: flex; }

/* ════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════ */
.about-hist { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.tl { position: relative; padding-left: 32px; }
.tl::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--blue), transparent); }
.tl-it { position: relative; margin-bottom: 32px; }
.tl-dot { position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--blue), 0 0 12px rgba(59,130,246,.5); }
.tl-yr { font-size: 10px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px; }
.tl-it h5 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.tl-it p { font-size: 13.5px; color: var(--text2); line-height: 1.65; }
.val-g { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.vc { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 26px; transition: .2s; }
.vc:hover { border-color: rgba(59,130,246,.3); background: var(--surface2); }
.vc-ico { width: 40px; height: 40px; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.vc-ico i { color: var(--blue); font-size: 15px; }
.vc h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.vc p { font-size: 13px; color: var(--text2); line-height: 1.65; }
.team-g { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tmc { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: .25s; }
.tmc:hover { border-color: var(--border2); transform: translateY(-4px); }
.tmc img { width: 100%; height: 240px; object-fit: cover; filter: saturate(.7); transition: filter .3s; }
.tmc:hover img { filter: saturate(1); }
.tmc-body { padding: 18px 20px 22px; }
.tmc-body h4 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.tmc-body .role { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 9px; }
.tmc-body p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ════════════════════════════════════
   OFFERS / ACTIVITIES
════════════════════════════════════ */
.oc { display: grid; grid-template-columns: 300px 1fr; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; margin-bottom: 14px; transition: .25s; }
.oc:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.3); }
/* Offer card image — CSS background instead of <img> */
.oc-img { background-size: cover; background-position: center; background-color: var(--bg3); min-height: 220px; transition: background-size .6s cubic-bezier(.25,.46,.45,.94); }
.oc:hover .oc-img { background-size: 108%; }
.ob { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.ob-badge { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 11px; border-radius: 99px; margin-bottom: 12px; }
.ob-badge.hot { background: rgba(239,68,68,.2); color: #F87171; border: 1px solid rgba(239,68,68,.3); }
.ob-badge.new { background: rgba(74,222,128,.15); color: #4ADE80; border: 1px solid rgba(74,222,128,.25); }
.ob-badge.pop { background: rgba(59,130,246,.15); color: var(--blue-l); border: 1px solid rgba(59,130,246,.25); }
.ob h3 { font-family: 'Syne', sans-serif; font-size: 21px; font-weight: 700; margin-bottom: 9px; }
.ob p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 13px; flex: 1; }
.ob-pr { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.ob-pr .pr { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--text); }
.ob-pr del { font-size: 16px; color: var(--text3); }
.ob-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--text3); margin-bottom: 18px; }
.ob-meta i { color: var(--blue); margin-right: 3px; }
.act-row { display: flex; align-items: center; gap: 22px; padding: 20px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; transition: .2s; }
.act-row:hover { border-color: var(--border2); background: var(--surface2); }
.act-ico { width: 44px; height: 44px; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.act-ico i { color: var(--blue); font-size: 17px; }
.act-info { flex: 1; }
.act-info h4 { font-family: 'Syne', sans-serif; font-size: 15.5px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.act-info p { font-size: 13px; color: var(--text2); line-height: 1.5; }
.act-pr { text-align: right; flex-shrink: 0; }
.act-pr .pr { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--text); display: block; margin-bottom: 7px; }

/* ════════════════════════════════════
   ARTICLES PAGE
════════════════════════════════════ */
.articles-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; }
.article-detail-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; }
.art-content h3 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin: 30px 0 12px; }
.art-content p { font-size: 15.5px; line-height: 1.9; color: var(--text2); margin-bottom: 16px; }
.art-content ul { margin: 0 0 16px; padding-left: 20px; }
.art-content ul li { font-size: 15px; line-height: 1.75; color: var(--text2); margin-bottom: 8px; }
.art-content blockquote { background: rgba(59,130,246,.06); border-left: 3px solid var(--blue); padding: 18px 22px; border-radius: 0 10px 10px 0; margin: 24px 0; font-size: 16px; font-style: italic; color: var(--text2); }
.art-meta { display: flex; gap: 20px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.am-it { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--text3); }
.am-it i { color: var(--blue); font-size: 11px; }
.am-it strong { color: var(--text); }
.side-box { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px; margin-bottom: 14px; }
.side-box h4 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sl-row { display: flex; align-items: center; gap: 9px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text2); transition: color .15s; }
.sl-row:last-child { border-bottom: none; }
.sl-row i { color: var(--blue); font-size: 10px; }
.sl-row:hover { color: var(--blue); }
.sp-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.sp-row:last-child { border-bottom: none; }
.sp-row .pr { font-weight: 700; color: var(--blue); }

/* ════════════════════════════════════
   LEGAL
════════════════════════════════════ */
.legal-wrap { max-width: 760px; }
.lbadge { display: inline-flex; align-items: center; gap: 8px; background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.2); color: var(--blue-l); padding: 7px 14px; border-radius: 8px; font-size: 12.5px; font-weight: 600; margin-bottom: 28px; }
.legal h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.legal p { font-size: 15px; line-height: 1.85; color: var(--text2); margin-bottom: 12px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal ul li { font-size: 15px; line-height: 1.75; color: var(--text2); margin-bottom: 7px; }
.legal a { color: var(--blue); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: var(--bg2); border-top: 1px solid var(--border); }
.footer-top { padding: 72px 0 52px; border-bottom: 1px solid var(--border); }
.footer-g { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.f-logo-icon { width: 30px; height: 30px; background: var(--blue); display: flex; align-items: center; justify-content: center; clip-path: polygon(0 0,100% 0,100% 80%,80% 100%,0 100%); }
.f-logo-icon svg { width: 16px; }
.f-logo-word { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); }
.f-logo-word em { color: var(--blue); font-style: normal; }
.f-desc { font-size: 13.5px; color: var(--text3); line-height: 1.8; margin-bottom: 22px; }
.f-soc { display: flex; gap: 8px; }
.f-soc a { width: 34px; height: 34px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text3); font-size: 13px; transition: .18s; }
.f-soc a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.f-col h5 { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: var(--text3); margin-bottom: 16px; }
.f-col li { margin-bottom: 9px; }
.f-col li a { font-size: 13.5px; color: var(--text3); transition: color .15s; }
.f-col li a:hover { color: var(--blue); }
.f-ci { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: 13px; color: var(--text3); }
.f-ci i { color: var(--blue); font-size: 11px; margin-top: 2px; flex-shrink: 0; }
.f-ci a { color: var(--text3); }
.f-ci a:hover { color: var(--blue); }
.footer-bot { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.fb-copy { font-size: 12.5px; color: var(--text3); }
.fb-copy em { color: var(--blue); font-style: normal; }
.fb-pay { display: flex; gap: 9px; }
/* fb-pay icon handled in SVG Icon System above */
.fb-links { display: flex; gap: 18px; }
.fb-links a { font-size: 12.5px; color: var(--text3); transition: color .15s; }
.fb-links a:hover { color: var(--blue); }

/* ════════════════════════════════════
   TOAST NOTIFICATION
════════════════════════════════════ */
#toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: rgba(6,13,31,.95); backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  color: var(--text); font-size: 14px; font-weight: 500;
  padding: 13px 24px; border-radius: 999px; z-index: 9000;
  display: flex; align-items: center; gap: 9px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
/* toast icon handled in SVG Icon System above */
#stb { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: var(--blue); color: #fff; border: none; border-radius: 10px; font-size: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(59,130,246,.45); opacity: 0; visibility: hidden; transition: .3s; z-index: 500; cursor: none; }
#stb.on { opacity: 1; visibility: visible; }
#stb:hover { background: var(--blue-l); transform: translateY(-3px); }

/* ════════════════════════════════════
   FADE IN UTILITY (GSAP-controlled — no CSS transition)
════════════════════════════════════ */
.fd { opacity: 0; }

/* ════════════════════════════════════
   PAGE ENTER ANIMATION
════════════════════════════════════ */
@keyframes pgIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   HEADER SLIM (scrolled state)
════════════════════════════════════ */
#hdr.slim .hdr-main-inner { box-shadow: 0 4px 32px rgba(0,0,0,.35); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media(max-width:1100px) {
  .footer-g { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-g { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .dest-cards-grid { grid-template-columns: repeat(2,1fr); }
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:991px) {
  #hdr { padding: 0 24px; }
  .nav { display: none; } .hbg { display: block; }
  .search-grid { grid-template-columns: 1fr; }
  .sf-item { border-right: none; border-bottom: 1px solid var(--border); }
  .sf-btn { padding: 18px 24px; width: 100%; justify-content: center; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .g3 { grid-template-columns: repeat(2,1fr); }
  .dd-layout { grid-template-columns: 1fr; }
  .dd-gallery { grid-template-columns: 1fr; height: auto; }
  .dd-gallery img { height: 240px; }
  .dd-gallery img:first-child { grid-row: auto; }
  .mg { grid-template-columns: repeat(3,1fr); }
  .flt { grid-template-columns: 1fr; gap: 14px; }
  .flt-pr { border-left: none; border-top: 1px solid var(--border); padding-top: 14px; padding-left: 0; text-align: left; }
  .oc { grid-template-columns: 1fr; }
  .oc img { height: 220px; }
  .sr-layout { grid-template-columns: 1fr; }
  .sr-sidebar { display: none; }
  .faq-layout, .ct-layout, .articles-layout, .article-detail-layout { grid-template-columns: 1fr; }
  .about-hist { grid-template-columns: 1fr; }
  .dd-hl { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 8px; }
  /* dest-cards-grid handled above */
  .hero-float-1, .hero-float-2 { display: none; }
}
@media(max-width:767px) {
  #hdr { padding: 0 18px; height: 62px; }
  .W { padding: 0 18px; }
  .sec { padding: 80px 0; }
  .hero { padding-top: 80px; }
  .hero-title { font-size: clamp(38px,11vw,56px); letter-spacing: -1px; }
  .hero-stats { gap: 24px; }
  .hm { padding-right: 24px; margin-right: 24px; }
  .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .g3, .val-g { grid-template-columns: 1fr; }
  .team-g { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-g { grid-template-columns: 1fr; gap: 32px; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
  .mg { grid-template-columns: repeat(2,1fr); }
  .dest-cards-grid { grid-template-columns: 1fr; }
  .dd-hl { grid-template-columns: 1fr; }
  .page-banner { padding: 100px 0 48px; }
  .cta-title { letter-spacing: -.5px; }
}
