:root {
  --navy: #0a1628;
  --navy2: #132040;
  --blue: #1a56db;
  --blue-light: #3b82f6;
  --sky: #eff6ff;
  --sky2: #dbeafe;
  --text: #1e293b;
  --text2: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #fff;
  --gold: #f59e0b;
  --green: #16a34a;
  --red: #dc2626;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── NAV ── */
.nav { background: var(--navy); height: 64px; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 200; }
.nav-logo { color: #fff; font-size: 1.45rem; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; gap: 6px; }
.nav-logo-dot { color: #60a5fa; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #94a3b8; font-size: 0.85rem; font-weight: 500; transition: color .2s; padding: 4px 0; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { background: var(--blue) !important; color: #fff !important; padding: 9px 22px !important; border-radius: 8px; font-weight: 600 !important; }
.nav-cta:hover { background: #1d4ed8 !important; }

/* ── BREADCRUMB ── */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--border); padding: 11px 40px; font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--blue); }
.breadcrumb span { margin: 0 6px; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #1a56db 100%); padding: 72px 40px 56px; position: relative; overflow: hidden; }
.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%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M20 0L0 20l20 20 20-20z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); color: #93c5fd; padding: 5px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 14px; }
.hero h1 em { color: #60a5fa; font-style: normal; }
.hero-sub { color: #94a3b8; font-size: 1.05rem; margin-bottom: 36px; max-width: 540px; }
.hero-2col { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: center; }

/* ── SEARCH BOX ── */
.search-box { background: #fff; border-radius: 16px; padding: 28px 28px 24px; box-shadow: 0 24px 64px rgba(0,0,0,.35); }
.search-tabs { display: flex; gap: 6px; margin-bottom: 20px; }
.stab { padding: 7px 16px; border-radius: 6px; font-size: 0.83rem; font-weight: 600; background: var(--bg); color: var(--muted); cursor: pointer; border: 1px solid var(--border); transition: all .15s; }
.stab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.search-row { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 10px; align-items: end; }
.sf { display: flex; flex-direction: column; gap: 5px; }
.sf label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.sf input, .sf select { border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 13px; font-size: 0.9rem; color: var(--text); background: #fff; transition: border-color .2s; font-family: inherit; }
.sf input:focus, .sf select:focus { outline: none; border-color: var(--blue); }
.sbtn { background: var(--blue); color: #fff; border: none; padding: 12px 24px; border-radius: 8px; font-size: 0.92rem; font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .2s; font-family: inherit; }
.sbtn:hover { background: #1d4ed8; }
.search-note { font-size: 0.73rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* ── TRUST BAR ── */
.trust-bar { display: flex; justify-content: center; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: #93c5fd; font-size: 0.82rem; font-weight: 500; }

/* ── QUICK STATS (hero sidebar) ── */
.hero-stats { display: flex; flex-direction: column; gap: 16px; }
.hstat { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 18px 20px; }
.hstat-num { font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.hstat-label { font-size: 0.78rem; color: #93c5fd; margin-top: 2px; }

/* ── SECTIONS ── */
.section { padding: 64px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-hd { margin-bottom: 36px; }
.eyebrow { font-size: 0.73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: 6px; }
.section-hd h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.section-hd p { color: var(--muted); margin-top: 6px; }
.divider { border: none; border-top: 1px solid var(--border); }
.bg-white { background: #fff; }

/* ── ROUTE CARDS ── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.route-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 20px; cursor: pointer; transition: all .2s; }
.route-card:hover { border-color: var(--blue-light); box-shadow: 0 4px 20px rgba(26,86,219,.1); transform: translateY(-2px); }
.rc-airports { font-weight: 800; font-size: 1rem; color: var(--navy); display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.rc-arrow { color: var(--blue); }
.rc-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.rc-price { font-size: 1.5rem; font-weight: 800; color: var(--blue); }
.rc-from { font-size: 0.73rem; color: var(--muted); }
.rc-tags { display: flex; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.tag { background: var(--sky2); color: var(--blue); font-size: 0.7rem; font-weight: 600; padding: 3px 7px; border-radius: 4px; }
.tag-green { background: #dcfce7; color: var(--green); }
.tag-gold { background: #fef3c7; color: #92400e; }

/* ── AIRPORT CARDS ── */
.airport-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.airport-card { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: all .2s; }
.airport-card:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(26,86,219,.08); }
.ap-icon { width: 42px; height: 42px; background: var(--sky); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.ap-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.ap-code { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── AFFILIATE STRIP ── */
.aff-strip { background: linear-gradient(135deg, var(--navy), #1a3a6b); padding: 48px 40px; }
.aff-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.aff-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 22px 18px; text-align: center; cursor: pointer; transition: background .2s; }
.aff-card:hover { background: rgba(255,255,255,.15); }
.aff-icon { font-size: 1.8rem; margin-bottom: 8px; }
.aff-title { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; }
.aff-sub { color: #93c5fd; font-size: 0.78rem; }
.aff-rate { display: inline-block; margin-top: 8px; background: rgba(245,158,11,.2); color: #fcd34d; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }

/* ── ARTICLES ── */
.article-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; cursor: pointer; transition: all .2s; }
.article-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.art-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.art-body { padding: 18px; }
.art-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--blue); margin-bottom: 6px; }
.art-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 6px; }
.art-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.art-meta { font-size: 0.73rem; color: var(--muted); margin-top: 10px; }

/* ── VIATOR SECTION ── */
.viator-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.viator-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; cursor: pointer; transition: all .2s; }
.viator-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.viator-img { height: 140px; background: linear-gradient(135deg, #1a3a6b, #1a56db); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; }
.viator-badge { position: absolute; top: 10px; right: 10px; background: var(--gold); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.viator-body { padding: 14px; }
.viator-title { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
.viator-meta { font-size: 0.78rem; color: var(--muted); }
.viator-price { font-size: 1rem; font-weight: 800; color: var(--green); margin-top: 8px; }
.viator-stars { color: var(--gold); font-size: 0.78rem; }

/* ── TOUR CARDS (G Adventures / Impact) ── */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.tour-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: all .2s; }
.tour-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-3px); border-color: #cbd5e1; }
.tour-img { height: 160px; background-size: cover; background-position: center; background-color: #1a3a6b; position: relative; }
.tour-badge-discount { position: absolute; top: 10px; left: 10px; background: #dc2626; color: #fff; font-size: 0.7rem; font-weight: 800; padding: 4px 9px; border-radius: 4px; letter-spacing: 0.02em; }
.tour-badge-src { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.7); color: #fff; font-size: 0.64rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.tour-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.tour-cat { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
.tour-title { font-weight: 700; font-size: 0.95rem; color: var(--navy); line-height: 1.3; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tour-meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; }
.tour-price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.tour-price { font-size: 1.1rem; font-weight: 800; color: var(--green); }
.tour-price-was { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }
.tour-disclosure { font-size: 0.72rem; color: var(--muted); margin-top: 18px; text-align: center; }

/* ── SIDEBAR ── */
.sidebar-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 20px; margin-bottom: 18px; }
.sidebar-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; color: var(--navy); }
.sidebar-link { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.83rem; cursor: pointer; transition: color .2s; }
.sidebar-link:last-child { border: none; }
.sidebar-link:hover { color: var(--blue); }
.sl-icon { width: 30px; height: 30px; background: var(--sky); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }

/* ── TABLES ── */
.info-table { width: 100%; border-collapse: collapse; }
.info-table td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.info-table td:first-child { color: var(--muted); width: 40%; }
.info-table td:last-child { font-weight: 600; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 14px 0; font-weight: 600; font-size: 0.88rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color .2s; }
.faq-q:hover { color: var(--blue); }
.faq-icon { color: var(--blue); font-size: 1.2rem; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; padding-bottom: 14px; }

/* ── PRICE CALENDAR ── */
.price-cal { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 14px; }
.pc-month { border-radius: 8px; padding: 10px 6px; text-align: center; border: 1.5px solid var(--border); cursor: pointer; transition: all .2s; }
.pc-month:hover { transform: translateY(-2px); }
.pc-month.cheap { background: #dcfce7; border-color: #16a34a; }
.pc-month.mid { background: #fef9c3; border-color: #ca8a04; }
.pc-month.peak { background: #fee2e2; border-color: #dc2626; }
.pc-name { font-size: 0.7rem; font-weight: 700; color: var(--text); }
.pc-price { font-size: 0.82rem; font-weight: 800; margin-top: 3px; }
.cheap .pc-price { color: #16a34a; }
.mid .pc-price { color: #ca8a04; }
.peak .pc-price { color: #dc2626; }
.pc-loading { font-size: 0.75rem; color: var(--muted); text-align: center; padding: 10px; }

/* ── TABS ── */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-btn { padding: 10px 20px; font-size: 0.85rem; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; background: none; border-left: none; border-right: none; border-top: none; font-family: inherit; }
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── RATING BARS ── */
.rating-row { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.rating-label { flex: 1; font-size: 0.83rem; }
.rating-bar { flex: 2; height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--blue), #60a5fa); border-radius: 4px; }
.rating-score { font-size: 0.83rem; font-weight: 700; width: 28px; text-align: right; }

/* ── ROUTE HERO ── */
.route-path { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.rp-city { text-align: center; }
.rp-code { font-size: 2.8rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.rp-name { font-size: 0.78rem; color: #94a3b8; margin-top: 3px; }
.rp-line { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 100px; }
.rp-dur { font-size: 0.78rem; color: #93c5fd; font-weight: 600; }
.rp-arrow { width: 100%; height: 2px; background: rgba(255,255,255,.2); position: relative; }
.rp-arrow::after { content: '✈️'; position: absolute; top: -12px; right: 2px; font-size: 1.1rem; }

/* ── FOOTER ── */
footer { background: var(--navy); color: #94a3b8; padding: 56px 40px 24px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { color: #fff; font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; }
.footer-logo span { color: #60a5fa; }
.footer-desc { font-size: 0.83rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 0.83rem; color: #94a3b8; margin-bottom: 7px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 18px; display: flex; justify-content: space-between; font-size: 0.78rem; }

/* ── CONTENT WRAP ── */
.content-2col { max-width: 1200px; margin: 0 auto; padding: 40px; display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.main-col {}

/* ── UTILS ── */
.btn-primary { display: inline-block; background: var(--blue); color: #fff; padding: 11px 24px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; transition: background .2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary:hover { background: #1d4ed8; }
.btn-outline { display: inline-block; border: 1.5px solid var(--border); color: var(--text); padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; transition: all .2s; cursor: pointer; background: #fff; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.loading { color: var(--muted); font-size: 0.85rem; font-style: italic; }
.api-note { background: var(--sky); border-left: 3px solid var(--blue); padding: 10px 14px; border-radius: 0 6px 6px 0; font-size: 0.82rem; color: var(--text2); margin: 12px 0; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .aff-inner { grid-template-columns: repeat(3, 1fr); }
  .hero-2col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .breadcrumb { padding: 10px 16px; }
  .hero { padding: 48px 16px 40px; }
  .section { padding: 48px 16px; }
  .search-row { grid-template-columns: 1fr 1fr; }
  .search-row .sbtn { grid-column: 1/-1; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .aff-inner { grid-template-columns: repeat(2, 1fr); }
  .content-2col { grid-template-columns: 1fr; padding: 16px; }
  .price-cal { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ── RELATED SEARCHES ── */
.related-searches { background: var(--sky); border: 1.5px solid var(--sky2); border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.rs-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; }
.rs-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.rs-tag { background: #fff; border: 1.5px solid var(--border); border-radius: 100px; padding: 7px 16px; font-size: 0.82rem; font-weight: 500; color: var(--text2); cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: 6px; }
.rs-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--sky); }
.rs-tag .rs-icon { font-size: 0.75rem; }
