/* ==========================================================================
   BUTTERFLY TRAVEL — Design System
   Aesthetic: "Mid-century airline atlas" — kağız fon, mürekkep lacivert,
   markanın 4 rengi afiş vurgusu, sert (blursuz) gölgeler, biniş kartı motifi.
   Bu dosya hem ana sayfa hem arama sayfası tarafından kullanılır.
   ========================================================================== */

:root {
  /* Paper & ink */
  --paper:    #F2EDE3;
  --paper-2:  #E9E2D4;
  --paper-3:  #DFD6C4;
  --card:     #FBF8F2;
  --ink:      #14212E;
  --ink-2:    #33475B;
  --muted:    #7B8A97;

  /* Brand (logo squares) */
  --blue:     #00AEEF;
  --blue-dk:  #0077A8;
  --yellow:   #F5A623;
  --red:      #E8453C;
  --green:    #7AB648;
  --wa:       #22C55E;
  --wa-dk:    #16A34A;

  --line:     rgba(20,33,46,.14);
  --line-2:   rgba(20,33,46,.30);

  --r:    4px;
  --r-lg: 8px;
  --r-pill: 999px;

  /* Sert baskı gölgeleri (blur yok) */
  --sh:    3px 3px 0 var(--ink);
  --sh-lg: 6px 6px 0 var(--ink);
  --sh-blue: 4px 4px 0 var(--blue);

  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --sans: 'Archivo', system-ui, sans-serif;
  /* Başlıqlar: incə, yüksək kontrastlı serif — böyük hərf yox, qışqırmır */
  --display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;

  --maxw: 1080px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── Kağıt dokusu: ince grain overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .13; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

::selection { background: var(--yellow); color: var(--ink); }

a { color: inherit; }
img { max-width: 100%; }

/* ── Yardımcı ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); }

.rule { height: 2px; background: var(--ink); border: none; }
.rule-thin { height: 1px; background: var(--line-2); border: none; }

/* Bölüm başlığı */
.sec { padding: 88px 0; }
.sec-sm { padding: 56px 0; }
.sec-head { margin-bottom: 40px; max-width: 640px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 8px; border-radius: 2px;
  background: var(--blue); flex-shrink: 0;
}
.eyebrow.y::before { background: var(--yellow); }
.eyebrow.r::before { background: var(--red); }
.eyebrow.g::before { background: var(--green); }

.sec-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -.005em;
}
.sec-title .thin { font-weight: 400; font-style: italic; color: var(--ink-2); }
.sec-sub { margin-top: 16px; font-size: 15px; line-height: 1.7; color: var(--ink-2); max-width: 520px; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 300;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 0 24px; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 40px; width: 40px; object-fit: contain; display: block; }
.nav-name {
  font-family: var(--display); font-weight: 600; font-size: 21px;
  letter-spacing: 0; line-height: 1;
}
.nav-name small {
  display: block; font-family: var(--mono); font-size: 9px; font-weight: 500;
  letter-spacing: .22em; color: var(--muted); text-transform: uppercase; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-a {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 12px; text-decoration: none; color: var(--ink-2);
  border-bottom: 2px solid transparent; transition: color .18s, border-color .18s;
}
.nav-a:hover { color: var(--ink); border-bottom-color: var(--yellow); }

.nav-visa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r);
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 15px; cursor: pointer; text-decoration: none;
  box-shadow: var(--sh); transition: transform .14s, box-shadow .14s;
}
.nav-visa:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.nav-visa:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }
.nav-visa .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--paper);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.75)} }

.burger {
  display: none; background: var(--paper); border: 2px solid var(--ink);
  border-radius: var(--r); padding: 8px 10px; cursor: pointer; line-height: 0;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px 0; }

/* ══════════════════════════════════════════════════════════
   VİZA TİCKER (header mesajı)
   ══════════════════════════════════════════════════════════ */
.ticker {
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
  overflow: hidden; position: relative; cursor: pointer;
  padding: 9px 0;
}
.ticker:hover { background: #FFB93D; }
.ticker-track { display: flex; width: max-content; animation: tick 34s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink);
  padding: 0 22px; white-space: nowrap; display: inline-flex; align-items: center; gap: 22px;
}
.ticker-item i { font-style: normal; color: var(--red); }
@keyframes tick { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none } }

/* ══════════════════════════════════════════════════════════
   BUTONLAR
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: .02em; text-decoration: none; cursor: pointer;
  padding: 14px 24px; border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--sh); transition: transform .14s, box-shadow .14s, background .18s;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: var(--sh); }
.btn-ink   { background: var(--ink);   color: var(--paper); }
.btn-blue  { background: var(--blue);  color: var(--ink); }
.btn-yellow{ background: var(--yellow);color: var(--ink); }
.btn-wa    { background: var(--wa);    color: #06301A; }
.btn-paper { background: var(--card);  color: var(--ink); }
.btn-sm { padding: 9px 15px; font-size: 13px; }
.btn-lg { padding: 17px 30px; font-size: 15px; }
.btn-ghost-light {
  background: transparent; color: var(--paper); border-color: var(--paper);
  box-shadow: 3px 3px 0 rgba(242,237,227,.45);
}
.btn-ghost-light:hover { box-shadow: 5px 5px 0 rgba(242,237,227,.45); background: rgba(242,237,227,.1); }

/* ══════════════════════════════════════════════════════════
   HERO — ortak zemin
   ══════════════════════════════════════════════════════════ */
.hero {
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
/* halftone nokta ızgarası */
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(242,237,227,.10) 1.1px, transparent 1.1px);
  background-size: 18px 18px;
}
/* renk yıkamaları */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 12% 30%, rgba(0,174,239,.16), transparent 62%),
    radial-gradient(ellipse 45% 50% at 88% 78%, rgba(245,166,35,.13), transparent 58%);
}
.hero-in { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* dekoratif rota yayı */
.arc { position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: .5; }
.arc path { stroke: rgba(242,237,227,.22); stroke-width: 1.5; stroke-dasharray: 6 8; fill: none; }
.arc .solid { stroke: var(--blue); stroke-dasharray: none; opacity: .55; }

/* uçan logo kareleri */
.floaters { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.floaters .sq { position: absolute; opacity: .16; animation: drift linear infinite; }
.sq1 { width: 190px; height: 190px; top: -40px; left: -60px; animation-duration: 26s; }
.sq2 { width: 130px; height: 130px; bottom: 40px; right: -30px; animation-duration: 32s; animation-delay: -9s; }
.sq3 { width: 96px;  height: 96px;  bottom: -18px; left: 24%; animation-duration: 22s; animation-delay: -5s; }
.sq4 { width: 80px;  height: 80px;  top: 14%; right: 16%; animation-duration: 28s; animation-delay: -14s; }
@keyframes drift {
  0%   { transform: translateY(0) rotate(0deg) }
  50%  { transform: translateY(-34px) rotate(180deg) }
  100% { transform: translateY(0) rotate(360deg) }
}
@media (prefers-reduced-motion: reduce) { .floaters .sq { animation: none } }

/* Giriş animasyonu */
.rise { opacity: 0; transform: translateY(22px); animation: rise .75s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes rise { to { opacity: 1; transform: none } }
.d1{animation-delay:.05s}.d2{animation-delay:.15s}.d3{animation-delay:.25s}
.d4{animation-delay:.35s}.d5{animation-delay:.45s}.d6{animation-delay:.55s}
@media (prefers-reduced-motion: reduce) { .rise { opacity: 1; transform: none; animation: none } }

/* Hero tipografi */
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(242,237,227,.6);
  border: 1px solid rgba(242,237,227,.28); border-radius: var(--r-pill);
  padding: 7px 16px;
}
.hero-kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: pulse 2s infinite; }

.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.04; letter-spacing: -.01em;
}
.display .blue { color: var(--blue); }
.display .yel  { color: var(--yellow); }
.display em { font-style: italic; font-weight: 400; }

.hero-lead { font-size: 17px; line-height: 1.65; color: rgba(242,237,227,.66); max-width: 470px; }

/* Hero istatistik şeridi */
.hero-meta { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid rgba(242,237,227,.22); border-radius: var(--r); overflow: hidden; }
.hero-meta div { padding: 13px 20px; border-right: 1px solid rgba(242,237,227,.22); }
.hero-meta div:last-child { border-right: none; }
.hero-meta b { display: block; font-family: var(--mono); font-size: 17px; font-weight: 600; color: var(--paper); }
.hero-meta span { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(242,237,227,.45); }

/* ══════════════════════════════════════════════════════════
   KARTLAR / ADIMLAR / ÖZELLİKLER
   ══════════════════════════════════════════════════════════ */
.card {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--sh); transition: transform .18s, box-shadow .18s;
}
.card:hover { transform: translate(-3px,-3px); box-shadow: var(--sh-lg); }

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

.step { padding: 30px 26px 28px; position: relative; overflow: hidden; }
.step-n {
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .1em;
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 2px solid var(--ink); border-radius: var(--r);
  margin-bottom: 18px;
}
.step:nth-child(1) .step-n { background: var(--blue); }
.step:nth-child(2) .step-n { background: var(--yellow); }
.step:nth-child(3) .step-n { background: var(--green); }
.step h3 { font-family: var(--display); font-size: 25px; font-weight: 600; letter-spacing: 0; margin-bottom: 9px; line-height: 1.15; }
.step p { font-size: 14px; line-height: 1.65; color: var(--ink-2); }

.feat { padding: 24px; display: flex; gap: 18px; align-items: flex-start; }
.feat-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 2px solid var(--ink); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.ico-b { background: var(--blue) }  .ico-y { background: var(--yellow) }
.ico-r { background: var(--red) }   .ico-g { background: var(--green) }
.feat h3 { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: 0; margin-bottom: 6px; line-height: 1.15; }
.feat p { font-size: 13.5px; line-height: 1.65; color: var(--ink-2); }

/* İstatistik bandı */
.stats {
  background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r);
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(242,237,227,.09) 1px, transparent 1px);
  background-size: 16px 16px;
}
.stat { padding: 30px 22px; text-align: center; border-right: 1px solid rgba(242,237,227,.16); position: relative; z-index: 2; }
.stat:last-child { border-right: none; }
.stat b { display: block; font-family: var(--mono); font-size: 34px; font-weight: 600; line-height: 1; letter-spacing: -.03em; }
.stat b i { font-style: normal; color: var(--yellow); }
.stat span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(242,237,227,.5); margin-top: 10px; }

/* ══════════════════════════════════════════════════════════
   POPÜLER İSTİKAMETLER — seyahat afişi kartları
   ══════════════════════════════════════════════════════════ */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dc {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--sh); overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.dc:hover { transform: translate(-3px,-3px); box-shadow: var(--sh-lg); }
.dc-img {
  height: 168px; flex-shrink: 0; position: relative; overflow: hidden;
  background: var(--ink); border-bottom: 2px solid var(--ink);
}
.dc-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.85) contrast(1.06); transition: transform .5s ease; }
.dc:hover .dc-img img { transform: scale(1.07); }
.dc-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,33,46,.62), transparent 58%);
}
.dc-stamp {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .1em;
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 3px; padding: 4px 8px;
}
.dc-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.dc-from { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.dc-city {
  font-family: var(--display); font-size: 26px; font-weight: 600;
  letter-spacing: 0; line-height: 1.1; margin-bottom: 14px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dc-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--line-2); }
.dc-price { min-width: 0; }
.dc-pf { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.dc-pv { font-family: var(--mono); font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.dc-btn {
  flex-shrink: 0; background: var(--ink); color: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r);
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 8px 13px; cursor: pointer; text-decoration: none;
  transition: background .18s, color .18s;
}
.dc-btn:hover { background: var(--yellow); color: var(--ink); }

/* ══════════════════════════════════════════════════════════
   İLETİŞİM
   ══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; align-items: stretch; }
.cc { padding: 26px; display: flex; flex-direction: column; }
.cc-h { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.ir { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px dashed var(--line-2); align-items: flex-start; }
.ir:last-of-type { border-bottom: none; }
.ir-l { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); min-width: 84px; flex-shrink: 0; padding-top: 3px; }
.ir-v { font-size: 14.5px; font-weight: 500; line-height: 1.55; color: var(--ink); }
.map-cc { border: 2px solid var(--ink); border-radius: var(--r); box-shadow: var(--sh); overflow: hidden; min-height: 340px; display: flex; flex-direction: column; background: var(--paper-2); }
.map-cc iframe { width: 100%; flex: 1; min-height: 340px; border: none; display: block; filter: grayscale(.25) contrast(1.05); }
.map-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 28px; color: var(--muted); }
.map-empty b { font-size: 30px; }
.map-empty p { font-size: 12.5px; line-height: 1.6; }

/* WhatsApp geniş bant */
.wa-band {
  background: var(--wa); border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--sh-lg); padding: 26px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
  text-decoration: none; color: #06301A;
  transition: transform .18s, box-shadow .18s;
}
.wa-band:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.wa-band h3 { font-family: var(--display); font-size: 30px; font-weight: 600; letter-spacing: 0; line-height: 1.1; }
.wa-band p { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-top: 7px; opacity: .78; }
.wa-band .arrow { font-size: 26px; font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer { background: var(--ink); color: var(--paper); border-top: 2px solid var(--ink); padding: 52px 24px 26px; }
.footer-in { max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; gap: 34px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(242,237,227,.16); }
.footer-brand { max-width: 320px; }
.footer-brand img { height: 44px; width: 44px; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(242,237,227,.55); }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(242,237,227,.4); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(242,237,227,.72); text-decoration: none; padding: 5px 0; transition: color .18s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bot { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-copy { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; color: rgba(242,237,227,.34); }
.footer-dots { display: flex; gap: 6px; }
.footer-dots i { width: 11px; height: 11px; border-radius: 3px; display: block; }

/* ══════════════════════════════════════════════════════════
   MODAL — ortak iskelet
   ══════════════════════════════════════════════════════════ */
.mback {
  position: fixed; inset: 0; z-index: 800; padding: 18px;
  background: rgba(20,33,46,.72); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
}
.mback.open { display: flex; animation: fadein .25s ease both; }
@keyframes fadein { from { opacity: 0 } to { opacity: 1 } }
.modal {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: 10px 10px 0 rgba(20,33,46,.55);
  width: 100%; max-height: 88vh; display: flex; flex-direction: column; overflow: hidden;
  animation: pop .32s cubic-bezier(.2,.9,.3,1.05) both;
}
@keyframes pop { from { opacity: 0; transform: translateY(24px) scale(.97) } to { opacity: 1; transform: none } }
.mx {
  background: var(--paper-2); border: 2px solid var(--ink); border-radius: var(--r);
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: 7px 13px; cursor: pointer; color: var(--ink);
  transition: background .18s;
}
.mx:hover { background: var(--red); color: var(--paper); }

/* ── VİZA MODALI ── */
.visa-modal { max-width: 560px; }
.visa-top {
  background: var(--ink); color: var(--paper); padding: 30px 30px 26px;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.visa-top::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(242,237,227,.09) 1px, transparent 1px);
  background-size: 15px 15px;
}
.visa-stamp {
  position: absolute; top: 14px; right: 18px; z-index: 2;
  border: 2.5px solid var(--red); color: var(--red); border-radius: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: .2em;
  padding: 7px 11px; transform: rotate(-11deg); opacity: .9;
  animation: stampIn .5s .5s cubic-bezier(.2,1.4,.4,1) both;
}
@keyframes stampIn { from { opacity: 0; transform: rotate(-11deg) scale(2.4) } to { opacity: .9; transform: rotate(-11deg) scale(1) } }
.visa-kicker {
  position: relative; z-index: 2;
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.visa-title {
  position: relative; z-index: 2;
  font-family: var(--display); font-size: clamp(1.7rem, 4.6vw, 2.4rem); font-weight: 600;
  letter-spacing: -.005em; line-height: 1.1; min-height: 2.2em;
}
.visa-title .cursor {
  display: inline-block; width: 3px; height: .82em; background: var(--yellow);
  margin-left: 4px; vertical-align: -2px; animation: caret .7s steps(1) infinite;
}
@keyframes caret { 0%,49%{opacity:1} 50%,100%{opacity:0} }
.visa-body { padding: 26px 30px 28px; overflow-y: auto; }
.visa-line { opacity: 0; transform: translateY(12px); }
.visa-line.in { animation: rise .55s cubic-bezier(.2,.7,.3,1) forwards; }
.visa-body p { font-size: 14.5px; line-height: 1.72; color: var(--ink-2); margin-bottom: 14px; }
.visa-body p b { color: var(--ink); font-weight: 700; }
.visa-points { list-style: none; margin: 4px 0 20px; }
.visa-points li {
  position: relative; padding: 9px 0 9px 24px;
  font-size: 14px; line-height: 1.6; border-bottom: 1px dashed var(--line-2);
}
.visa-points li:last-child { border-bottom: none; }
.visa-points li::before {
  content: '✦'; position: absolute; left: 2px; top: 10px;
  color: var(--red); font-size: 13px;
}
.visa-actions { display: flex; gap: 11px; flex-wrap: wrap; }
.visa-actions .btn { flex: 1; min-width: 150px; }

/* ── İSTİKAMET MODALI ── */
.dest-modal { max-width: 500px; }
.dest-modal-img { height: 210px; flex-shrink: 0; border-bottom: 2px solid var(--ink); overflow: hidden; background: var(--ink); }
.dest-modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-modal-ph { width: 100%; height: 100%; background:
  repeating-linear-gradient(45deg, #14212E, #14212E 12px, #1B2C3D 12px, #1B2C3D 24px); }
.dest-modal-body { padding: 24px 26px 0; overflow-y: auto; }
.dest-modal-badge { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.dest-modal-title { font-family: var(--display); font-size: 34px; font-weight: 600; letter-spacing: 0; line-height: 1.08; margin-bottom: 10px; }
.dest-modal-price { font-family: var(--mono); font-size: 13px; color: var(--ink-2); margin-bottom: 16px; }
.dest-modal-price b { font-size: 19px; color: var(--ink); }
.dest-modal-desc { font-size: 14px; line-height: 1.72; color: var(--ink-2); white-space: pre-line; }
.dest-modal-actions {
  display: flex; gap: 11px;
  position: sticky; bottom: 0; z-index: 2;
  background: var(--card); border-top: 1px dashed var(--line-2);
  margin-top: 20px; padding: 16px 0 24px;
}
.dest-modal-actions .btn { flex: 1; }

/* ══════════════════════════════════════════════════════════
   ANA SƏHİFƏ — hero
   ══════════════════════════════════════════════════════════ */
.home-hero { padding: 76px 0 88px; }
.home-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.home-display { margin: 26px 0 24px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 34px; }

/* Bilet maketi */
.hero-ticket {
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: 8px 8px 0 rgba(0,174,239,.9);
  position: relative; overflow: hidden;
  transform: rotate(-1.6deg);
}
/* .rise animasiyası bitəndə əyilmə itməsin */
.hero-ticket.rise { animation-name: riseTicket; }
@keyframes riseTicket { to { opacity: 1; transform: rotate(-1.6deg) } }
.tk-top { display: flex; align-items: center; gap: 13px; padding: 20px 22px 16px; border-bottom: 1px dashed var(--line-2); }
.tk-top img { height: 42px; width: 42px; object-fit: contain; }
.tk-brand { font-family: var(--display); font-weight: 600; letter-spacing: 0; font-size: 20px; line-height: 1; }
.tk-sub { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.tk-route { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 26px 22px; }
.tk-ap { text-align: center; }
.tk-ap b { display: block; font-family: var(--mono); font-size: 34px; font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.tk-ap span { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.tk-mid { flex: 1; position: relative; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px); }
.tk-mid i {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: var(--paper); padding: 0 8px; font-style: normal; font-size: 17px; color: var(--blue-dk);
}
.tk-perf { position: relative; height: 0; border-top: 2px dashed var(--line-2); }
.tk-perf .notch {
  position: absolute; top: -11px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); border: 2px solid var(--ink);
}
.tk-perf .notch.l { left: -12px; }
.tk-perf .notch.r { right: -12px; }
.tk-bot { display: flex; justify-content: space-between; gap: 12px; padding: 20px 22px 22px; }
.tk-bot div span { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }
.tk-bot div b { display: block; font-size: 14px; font-weight: 700; margin-top: 5px; }
.tk-price b { color: var(--wa-dk); }

/* Viza bandı */
.visa-band {
  background: var(--red); color: var(--paper);
  border: 2px solid var(--ink); border-radius: var(--r); box-shadow: var(--sh-lg);
  padding: 34px 36px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.visa-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 15px 15px;
}
.visa-band-left { position: relative; z-index: 2; max-width: 560px; }
.visa-band-stamp {
  display: inline-block; border: 2.5px solid var(--paper); border-radius: 5px;
  font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .22em;
  padding: 5px 10px; transform: rotate(-3deg); margin-bottom: 14px;
}
.visa-band h2 {
  font-family: var(--display); font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 600;
  letter-spacing: -.005em; line-height: 1.12;
}
.visa-band h2 span { color: var(--yellow); }
.visa-band p { margin-top: 12px; font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.85); }
.visa-band .btn { position: relative; z-index: 2; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   AXTARIŞ SƏHİFƏSİ
   ══════════════════════════════════════════════════════════ */
.search-hero { padding: 62px 0 112px; }
.search-hero-copy { max-width: 620px; }
.search-display { margin: 22px 0 18px; font-size: clamp(2.3rem, 5.6vw, 4.2rem); }

.search-wrap { max-width: var(--maxw); margin: -62px auto 0; padding: 0 24px; position: relative; z-index: 40; }
.search-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--r); box-shadow: var(--sh-lg); overflow: hidden; }

.sc-tabs { display: flex; border-bottom: 2px solid var(--ink); background: var(--paper-2); }
.sct {
  flex: 1; padding: 15px 20px; background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  border-right: 2px solid var(--ink); transition: background .18s, color .18s;
}
.sct:last-child { border-right: none; }
.sct:hover { color: var(--ink); }
.sct.on { background: var(--card); color: var(--ink); box-shadow: inset 0 -4px 0 var(--yellow); }

.sc-body { padding: 22px; }
.sc-grid { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start; }
.fg { display: flex; flex-direction: column; gap: 6px; min-width: 0; flex: 1 1 170px; }
.fg[hidden] { display: none; }
.fg-lbl {
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.iata-lnk {
  background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .08em;
  color: var(--blue-dk); text-transform: uppercase; border-bottom: 1px solid currentColor;
}
.iata-lnk:hover { color: var(--red); }
.fi {
  width: 100%; padding: 13px 14px;
  border: 2px solid var(--ink); border-radius: var(--r); background: var(--paper);
  font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--ink);
  outline: none; transition: box-shadow .16s, background .16s;
}
.fi.mono { font-family: var(--mono); letter-spacing: .06em; }
.fi::placeholder { color: #B4AFA2; font-weight: 400; }
.fi:focus { background: var(--card); box-shadow: 3px 3px 0 var(--blue); }
.fi.err { box-shadow: 3px 3px 0 var(--red); background: #FDF0EF; }
.fe { font-family: var(--mono); font-size: 10.5px; color: var(--red); min-height: 14px; letter-spacing: .04em; }

.swap {
  align-self: center; margin-top: 22px;
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--yellow); border: 2px solid var(--ink); border-radius: var(--r);
  font-size: 16px; cursor: pointer; box-shadow: var(--sh);
  transition: transform .16s, box-shadow .16s;
}
.swap:hover { transform: translate(-2px,-2px) rotate(180deg); box-shadow: 5px 5px 0 var(--ink); }

.sc-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.sc-note { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .04em; }
.sc-note kbd {
  border: 1px solid var(--line-2); border-radius: 3px; padding: 1px 5px;
  background: var(--paper-2); font-size: 10px;
}
.spin {
  display: inline-block; width: 14px; height: 14px;
  border: 2.5px solid rgba(242,237,227,.35); border-top-color: var(--paper);
  border-radius: 50%; animation: spn .7s linear infinite;
}
@keyframes spn { to { transform: rotate(360deg) } }

/* ── Nəticə başlığı ── */
.res-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.res-route { font-size: 24px; font-weight: 600; letter-spacing: -.02em; }
.res-route i { font-style: normal; color: var(--blue-dk); margin: 0 6px; }
.res-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 11px; border: 2px solid var(--ink); border-radius: var(--r);
}
.tag-b { background: var(--blue); }
.tag-y { background: var(--yellow); }

/* ── BOARDING PASS KARTI ── */
.pass-wrap { margin-bottom: 16px; }
.pass {
  display: grid; grid-template-columns: 1fr 190px;
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--sh); overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.pass-wrap:hover .pass { transform: translate(-3px,-3px); box-shadow: var(--sh-lg); }
.pass-main { padding: 18px 22px 20px; min-width: 0; }
.pass-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.pass-tag {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; background: var(--paper-2); border: 1px solid var(--line-2);
  border-radius: 3px; padding: 3px 8px;
}
.pass-carrier { font-size: 13px; font-weight: 700; letter-spacing: -.005em; }
.pass-no { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .08em; }

.pass-route { display: flex; align-items: center; gap: 16px; }
.pt { text-align: center; min-width: 66px; }
.pt b { display: block; font-size: 27px; font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.pt span { display: block; font-size: 13px; color: var(--ink-2); margin-top: 6px; }
.pt span sup { color: var(--red); font-size: 9px; font-weight: 600; }
.pt-mid { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 90px; }
.pt-dur { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.pt-rule { width: 100%; height: 2px; position: relative; background: repeating-linear-gradient(90deg, var(--line-2) 0 5px, transparent 5px 10px); }
.pt-rule i { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--card); padding: 0 7px; font-style: normal; font-size: 14px; color: var(--blue-dk); }
.pt-stop {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; border: 1.5px solid var(--ink); border-radius: 3px; padding: 2px 8px;
}
.pt-stop.direct { background: var(--green); }
.pt-stop.stop { background: var(--yellow); }

.pass-stub {
  border-left: 2px dashed var(--ink); background: var(--paper-2);
  padding: 18px 18px; display: flex; flex-direction: column; justify-content: center;
  gap: 4px; text-align: center; position: relative;
}
.pass-stub::before, .pass-stub::after {
  content: ''; position: absolute; left: -11px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--paper); border: 2px solid var(--ink);
}
.pass-stub::before { top: -11px; }
.pass-stub::after  { bottom: -11px; }
.stub-l { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.stub-v { font-size: 15px; font-weight: 600; letter-spacing: .01em; margin-bottom: 10px; }
.stub-btn {
  display: block; background: var(--wa); color: #06301A; text-decoration: none;
  border: 2px solid var(--ink); border-radius: var(--r);
  font-size: 12.5px; font-weight: 700; padding: 9px 8px;
  transition: background .18s;
}
.stub-btn:hover { background: var(--yellow); }

.pass-tog {
  width: 100%; margin-top: -2px; background: var(--paper-2);
  border: 2px solid var(--ink); border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-2);
  padding: 8px 20px; cursor: pointer; text-align: left;
  display: flex; align-items: center; gap: 8px; transition: background .18s;
}
.pass-tog:hover { background: var(--paper-3); }
.tog-ic { font-style: normal; transition: transform .25s; }
.pass-tog.open { border-radius: 0; border-bottom-color: transparent; }
.pass-tog.open .tog-ic { transform: rotate(180deg); }
.pass-det { max-height: 0; overflow: hidden; border: none; transition: max-height .35s ease, padding .3s; background: var(--card); }
.pass-det.open {
  max-height: 700px; padding: 14px 22px 16px;
  border: 2px solid var(--ink); border-top: none; border-radius: 0 0 var(--r) var(--r);
}
.det-h { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--blue-dk); margin: 8px 0 8px; }
.det-seg { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 9px 0; border-bottom: 1px dashed var(--line-2); }
.det-seg:last-child { border-bottom: none; }
.det-r { font-size: 12.5px; font-weight: 500; }
.det-m { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ── Boş / xəta halları ── */
.state {
  background: var(--card); border: 2px solid var(--ink); border-radius: var(--r);
  box-shadow: var(--sh); padding: 46px 26px; text-align: center;
}
.state.err { background: #FDF2F1; }
.state-ico { font-size: 34px; margin-bottom: 12px; }
.state-t { font-family: var(--display); font-size: 27px; font-weight: 600; letter-spacing: 0; margin-bottom: 8px; }
.state-s { font-size: 14px; line-height: 1.65; color: var(--ink-2); max-width: 440px; margin: 0 auto; }
.state-acts { display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* ── Skeleton ── */
.sk { display: grid; grid-template-columns: 1fr 190px; gap: 20px; background: var(--card); border: 2px solid var(--line-2); border-radius: var(--r); padding: 20px 22px; margin-bottom: 16px; }
.skl { height: 11px; border-radius: 3px; margin-top: 9px; background: linear-gradient(90deg, var(--paper-2) 25%, var(--paper) 50%, var(--paper-2) 75%); background-size: 400% 100%; animation: sk 1.1s ease-in-out infinite; }
@keyframes sk { 0% { background-position: 100% 50% } 100% { background-position: 0 50% } }

/* ── IATA modalı ── */
.iata-modal { max-width: 840px; }
.mh { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 22px; border-bottom: 2px solid var(--ink); background: var(--paper-2); flex-shrink: 0; }
.mh-t { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.ms { padding: 14px 22px; border-bottom: 2px solid var(--ink); flex-shrink: 0; background: var(--card); }
.mb { overflow-y: auto; flex: 1; background: var(--card); }
.iata-modal table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.iata-modal th, .iata-modal td { border-bottom: 1px solid var(--line); padding: 11px 16px; text-align: left; vertical-align: middle; }
.iata-modal th {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); background: var(--paper-2); position: sticky; top: 0; z-index: 2;
  border-bottom: 2px solid var(--ink);
}
.iata-row { cursor: pointer; }
.iata-row:hover td { background: var(--paper-2); }
.iata-row:hover .ip { background: var(--yellow); }
.ip {
  display: inline-block;
  background: var(--blue); border: 2px solid var(--ink); border-radius: 3px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; padding: 5px 11px;
  color: var(--ink); transition: background .18s;
}
.mh-t b { font-weight: 600; color: var(--red); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-ticket { max-width: 440px; transform: rotate(-1deg); }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { padding: 0 16px; height: 62px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink); padding: 8px 16px 14px;
  }
  .nav-links.open .nav-a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  .nav-name small { display: none; }
  .wrap, .wrap-narrow, .hero-in { padding: 0 16px; }
  .sec { padding: 56px 0; }
  .sec-sm { padding: 36px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(242,237,227,.16); }
  .dest-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 16px 22px; }
  .footer-cols { gap: 34px; }
  .wa-band { padding: 22px; }
  .visa-top { padding: 24px 22px 22px; }
  .visa-body { padding: 22px; }

  /* Ana səhifə */
  .home-hero { padding: 56px 0 68px; }
  .hero-ticket { transform: none; box-shadow: 6px 6px 0 rgba(0,174,239,.9); }
  .hero-btns { gap: 11px; }
  .hero-btns .btn { flex: 1; min-width: 100%; }
  .hero-meta div { flex: 1; min-width: 33%; }
  .visa-band { padding: 26px 22px; }
  .visa-band .btn { width: 100%; }

  /* Axtarış */
  .search-hero { padding: 46px 0 86px; }
  .search-wrap { margin-top: -52px; padding: 0 16px; }
  .sc-body { padding: 16px; }
  .sc-grid { gap: 10px; }
  .swap { display: none; }
  .fg { flex: 1 1 100%; }
  .sc-actions .btn { flex: 1; min-width: 100%; }
  .sc-note { width: 100%; }

  /* Boarding pass — dikey */
  .pass { grid-template-columns: 1fr; }
  .pass-main { padding: 16px; }
  .pass-route { gap: 10px; }
  .pt b { font-size: 23px; }
  .pass-stub {
    border-left: none; border-top: 2px dashed var(--ink);
    flex-direction: row; align-items: center; justify-content: space-between;
    text-align: left; gap: 12px; padding: 14px 16px;
  }
  .pass-stub::before, .pass-stub::after { left: auto; top: -11px; bottom: auto; }
  .pass-stub::before { left: -11px; }
  .pass-stub::after  { right: -11px; }
  .stub-v { margin-bottom: 0; }
  .stub-btn { padding: 10px 16px; }
  .sk { grid-template-columns: 1fr; }
  .sk-r { display: none; }
  .res-route { font-size: 20px; }
  .iata-modal th, .iata-modal td { padding: 9px 11px; font-size: 12.5px; }
}
