/* ═══════════════════════════════════════════
   KamilWays — Premium App Design System v2
   Light, airy, mobile-first. Think Apple/Airbnb.
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }

:root {
  --bg:        #EEF3FA;
  --bg2:       #E4ECF7;
  --surface:   #FFFFFF;
  --surface2:  #F5F8FD;
  --navy:      #0D2144;
  --navy2:     #1A3560;
  --ink:       #1C2B45;
  --muted:     #6B7FA0;
  --muted2:    #A8B8D0;
  --blue:      #1B6EF3;
  --blueDark:  #1458C8;
  --blueLight: #E8F0FE;
  --blueGlow:  rgba(27,110,243,0.12);
  --sky:       #5BA8FF;
  --gold:      #F0A500;
  --goldLight: #FEF3D7;
  --green:     #16A34A;
  --greenLight:#DCFCE7;
  --red:       #DC2626;
  --redLight:  #FEE2E2;
  --shadow-sm: 0 1px 4px rgba(13,33,68,0.06);
  --shadow:    0 4px 20px rgba(13,33,68,0.08);
  --shadow-md: 0 8px 32px rgba(13,33,68,0.10);
  --shadow-lg: 0 20px 60px rgba(13,33,68,0.12);
  --shadow-blue: 0 8px 24px rgba(27,110,243,0.22);
  --border:    rgba(13,33,68,0.08);
  --border2:   rgba(13,33,68,0.13);
  --r-sm: 10px; --r: 16px; --r-lg: 22px; --r-xl: 28px; --r-full: 100px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { background:var(--bg); color:var(--ink); font-family:var(--font-body); font-size:15px; line-height:1.55; min-height:100vh; overflow-x:hidden; }
h1,h2,h3,h4,h5 { font-family:var(--font-head); letter-spacing:-0.03em; line-height:1.1; color:var(--navy); }
a { text-decoration:none; color:inherit; }
button { font-family:var(--font-body); cursor:pointer; border:none; background:none; color:inherit; }
input,select,textarea { font-family:var(--font-body); }
img { display:block; max-width:100%; }
::-webkit-scrollbar { width:0; height:0; }

/* ── NAVBAR ── */
.navbar { position:fixed; top:0; left:0; right:0; z-index:900; height:60px; display:flex; align-items:center; justify-content:space-between; padding:0 20px; background:rgba(238,243,250,0.9); backdrop-filter:blur(20px) saturate(180%); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid var(--border); }
.navbar-logo { display:flex; align-items:center; gap:9px; }
.logo-mark { width:34px; height:34px; border-radius:10px; background:var(--navy); display:flex; align-items:center; justify-content:center; font-size:16px; position:relative; flex-shrink:0; }
.logo-mark::after { content:''; position:absolute; top:-3px; right:-3px; width:8px; height:8px; background:var(--gold); border-radius:50%; border:2px solid var(--bg); }
.logo-text { font-family:var(--font-head); font-size:19px; font-weight:800; color:var(--navy); letter-spacing:-0.5px; }
.logo-text em { color:var(--gold); font-style:normal; }
.nav-links { display:flex; gap:2px; }
.nav-link { padding:7px 13px; border-radius:var(--r-full); font-size:13.5px; font-weight:500; color:var(--muted); transition:all .18s; background:none; border:none; }
.nav-link:hover { color:var(--navy); background:rgba(13,33,68,0.05); }
.nav-link.active { color:var(--navy); font-weight:600; background:var(--surface); box-shadow:var(--shadow-sm); }
.nav-right { display:flex; align-items:center; gap:8px; }
.nav-btn-ghost { padding:8px 16px; border-radius:var(--r-full); font-size:13px; font-weight:500; color:var(--navy); border:1.5px solid var(--border2); transition:all .18s; }
.nav-btn-ghost:hover { border-color:var(--navy); }
.nav-btn-fill { padding:8px 18px; border-radius:var(--r-full); font-size:13px; font-weight:600; color:#fff; background:var(--navy); transition:all .18s; }
.nav-btn-fill:hover { background:var(--navy2); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; }
.hamburger span { width:22px; height:2px; background:var(--navy); border-radius:1px; transition:all .3s; display:block; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
.mobile-nav { display:none; position:fixed; top:60px; left:0; right:0; background:var(--surface); border-bottom:1px solid var(--border); z-index:899; padding:8px 0 14px; box-shadow:var(--shadow-md); }
.mobile-nav.open { display:block; }
.mobile-nav-link { display:block; padding:13px 24px; font-size:15px; font-weight:500; color:var(--muted); transition:color .15s; }
.mobile-nav-link:hover,.mobile-nav-link.active { color:var(--navy); }
.mobile-nav-divider { height:1px; background:var(--border); margin:6px 0; }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; justify-content:center; gap:7px; padding:13px 24px; border-radius:var(--r-full); font-size:15px; font-weight:600; cursor:pointer; transition:all .2s; border:none; font-family:var(--font-body); }
.btn-primary { background:var(--blue); color:#fff; box-shadow:var(--shadow-blue); }
.btn-primary:hover { background:var(--blueDark); transform:translateY(-1px); }
.btn-navy { background:var(--navy); color:#fff; box-shadow:0 6px 20px rgba(13,33,68,0.2); }
.btn-navy:hover { background:var(--navy2); transform:translateY(-1px); }
.btn-secondary { background:var(--surface); color:var(--navy); border:1.5px solid var(--border2); box-shadow:var(--shadow-sm); }
.btn-secondary:hover { border-color:var(--navy); }
.btn-gold { background:var(--gold); color:#fff; box-shadow:0 6px 20px rgba(240,165,0,0.25); }
.btn-sm { padding:9px 18px; font-size:13px; }
.btn-full { width:100%; }
.btn-back { display:inline-flex; align-items:center; gap:6px; padding:8px 16px; border-radius:var(--r-full); border:1.5px solid var(--border2); color:var(--muted); font-size:13px; background:var(--surface); box-shadow:var(--shadow-sm); transition:all .18s; }
.btn-back:hover { color:var(--navy); border-color:var(--navy); }

/* ── BADGES ── */
.badge { display:inline-flex; align-items:center; gap:4px; padding:4px 11px; border-radius:var(--r-full); font-size:11px; font-weight:700; }
.badge-blue { background:var(--blueLight); color:var(--blue); }
.badge-navy { background:rgba(13,33,68,0.08); color:var(--navy); }
.badge-gold { background:var(--goldLight); color:var(--gold); }
.badge-green { background:var(--greenLight); color:var(--green); }
.badge-red { background:var(--redLight); color:var(--red); }
.badge-purple { background:#EDE9FE; color:#6D28D9; }
.badge-muted { background:rgba(13,33,68,0.05); color:var(--muted); border:1px solid var(--border); }

/* ── FILTER CHIPS ── */
.fchip { padding:8px 16px; border-radius:var(--r-full); font-size:13px; font-weight:500; color:var(--muted); border:1.5px solid var(--border2); background:var(--surface); cursor:pointer; white-space:nowrap; transition:all .18s; flex-shrink:0; box-shadow:var(--shadow-sm); }
.fchip:hover { color:var(--navy); border-color:rgba(13,33,68,0.25); }
.fchip.active { background:var(--navy); color:#fff; border-color:var(--navy); box-shadow:0 4px 12px rgba(13,33,68,0.2); }
.filters-bar { display:flex; gap:8px; overflow-x:auto; padding-bottom:2px; -ms-overflow-style:none; scrollbar-width:none; }
.filters-bar::-webkit-scrollbar { display:none; }

/* ── CARDS ── */
.card { background:var(--surface); border-radius:var(--r); border:1px solid var(--border); box-shadow:var(--shadow-sm); }
.card-lg { background:var(--surface); border-radius:var(--r-lg); border:1px solid var(--border); box-shadow:var(--shadow); }
.card-hover { transition:all .22s; cursor:pointer; }
.card-hover:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }

/* ── FIELDS ── */
.field { display:flex; flex-direction:column; gap:5px; }
.field label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); }
.field input,.field select,.field textarea { background:var(--surface2); border:1.5px solid var(--border2); border-radius:var(--r-sm); padding:11px 14px; color:var(--navy); font-size:14px; outline:none; transition:border-color .18s, box-shadow .18s; width:100%; -webkit-appearance:none; appearance:none; }
.field input::placeholder { color:var(--muted2); }
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--blue); box-shadow:0 0 0 3px var(--blueGlow); background:var(--surface); }
.field select option { background:#fff; color:var(--navy); }
.field textarea { resize:vertical; min-height:80px; }
.field-row { display:grid; gap:12px; }
.field-row-2 { grid-template-columns:1fr 1fr; }
.field-row-3 { grid-template-columns:1fr 1fr 1fr; }

/* ── SEARCH BOX ── */
.search-box { background:var(--surface); border-radius:var(--r-xl); border:1px solid var(--border); box-shadow:var(--shadow-lg); padding:18px 18px 16px; position:relative; overflow:hidden; }
.search-box::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--blue) 0%,var(--sky) 50%,var(--gold) 100%); }
.search-tabs { display:flex; gap:3px; margin-bottom:16px; background:var(--bg2); border-radius:var(--r-full); padding:4px; overflow-x:auto; -ms-overflow-style:none; scrollbar-width:none; }
.search-tabs::-webkit-scrollbar { display:none; }
.stab { padding:8px 15px; border-radius:var(--r-full); font-size:13px; font-weight:500; color:var(--muted); cursor:pointer; white-space:nowrap; flex-shrink:0; transition:all .18s; border:none; background:none; }
.stab.active { background:var(--surface); color:var(--navy); font-weight:600; box-shadow:var(--shadow-sm); }
.stab:hover:not(.active) { color:var(--navy); }
.swap-btn { width:36px; height:36px; border-radius:50%; background:var(--blueLight); border:none; color:var(--blue); font-size:15px; cursor:pointer; transition:all .22s; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.swap-btn:hover { background:var(--blue); color:#fff; transform:rotate(180deg); }
.search-btn { padding:13px 22px; border-radius:var(--r-sm); background:var(--blue); color:#fff; font-size:15px; font-weight:700; font-family:var(--font-head); cursor:pointer; border:none; transition:all .18s; box-shadow:var(--shadow-blue); white-space:nowrap; display:flex; align-items:center; justify-content:center; }
.search-btn:hover { background:var(--blueDark); }
.radio-group { display:flex; gap:16px; flex-wrap:wrap; }
.radio-opt { display:flex; align-items:center; gap:7px; font-size:13.5px; color:var(--muted); cursor:pointer; }
.radio-opt input[type=radio] { accent-color:var(--blue); width:16px; height:16px; cursor:pointer; }
.radio-opt.sel { color:var(--navy); font-weight:500; }

/* ── TRUST BAR ── */
.trust-bar { display:flex; overflow-x:auto; gap:0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); -ms-overflow-style:none; scrollbar-width:none; }
.trust-bar::-webkit-scrollbar { display:none; }
.trust-item { display:flex; align-items:center; gap:10px; padding:14px 22px; border-right:1px solid var(--border); white-space:nowrap; flex-shrink:0; }
.trust-item:last-child { border-right:none; }
.trust-icon { width:34px; height:34px; border-radius:9px; background:var(--blueLight); display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0; }
.trust-label strong { display:block; font-size:13px; font-weight:600; color:var(--navy); }
.trust-label span { font-size:11px; color:var(--muted); }

/* ── ROUTE CARDS ── */
.route-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r); padding:16px 18px; cursor:pointer; transition:all .2s; display:block; box-shadow:var(--shadow-sm); }
.route-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); border-color:rgba(27,110,243,0.3); }
.route-cities { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.route-from { font-size:12px; color:var(--muted); margin-bottom:10px; }
.route-price { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--blue); }
.route-price-lbl { font-size:11px; color:var(--muted); margin-top:2px; }

/* ── PACKAGE CARDS ── */
.pkg-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; display:block; cursor:pointer; transition:all .22s; box-shadow:var(--shadow-sm); }
.pkg-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); }
.pkg-img { height:145px; position:relative; overflow:hidden; display:flex; align-items:flex-end; padding:12px; }
.pkg-img-bg { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:58px; }
.pkg-body { padding:14px 15px; }
.pkg-name { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.pkg-sub { font-size:12px; color:var(--muted); margin-bottom:12px; line-height:1.5; }
.pkg-footer { display:flex; justify-content:space-between; align-items:center; }
.pkg-price { font-family:var(--font-head); font-size:19px; font-weight:800; color:var(--blue); }
.pkg-nights { font-size:11px; color:var(--muted); margin-top:2px; }
.pkg-book-btn { padding:8px 15px; border-radius:var(--r-full); background:var(--blueLight); color:var(--blue); font-size:12px; font-weight:700; border:none; cursor:pointer; transition:all .18s; }
.pkg-book-btn:hover { background:var(--blue); color:#fff; }

/* ── FLIGHT CARDS ── */
.flight-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:18px 20px; margin-bottom:10px; display:grid; grid-template-columns:160px auto 1fr auto auto; align-items:center; gap:14px; cursor:pointer; transition:all .2s; position:relative; overflow:hidden; box-shadow:var(--shadow-sm); }
.flight-card:hover { box-shadow:var(--shadow-md); transform:translateY(-1px); }
.flight-card.best { border-color:rgba(240,165,0,0.35); }
.flight-best-badge { position:absolute; top:10px; right:10px; background:var(--goldLight); color:var(--gold); font-size:10px; font-weight:700; padding:3px 10px; border-radius:var(--r-full); text-transform:uppercase; letter-spacing:.05em; }
.flight-airline { display:flex; align-items:center; gap:10px; }
.airline-logo { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:800; font-size:12px; flex-shrink:0; border:1px solid var(--border); }
.logo-ek { background:#FFF0F0; color:#C41C1C; } .logo-pk { background:#F0F7FF; color:#0064C8; }
.logo-fz { background:#FFF8E8; color:#E07B00; } .logo-qa { background:#FFF0F5; color:#8B0033; }
.logo-g9 { background:#FFF0F0; color:#C00000; } .logo-sv { background:#F0FFF8; color:#007040; }
.airline-name { font-size:14px; font-weight:600; color:var(--navy); } .airline-num { font-size:11px; color:var(--muted); }
.flight-time { text-align:center; } .flight-t { font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--navy); letter-spacing:-.5px; } .flight-c { font-size:11px; color:var(--muted); margin-top:2px; }
.flight-route { flex:1; display:flex; flex-direction:column; align-items:center; gap:5px; padding:0 14px; }
.flight-dur { font-size:11px; color:var(--muted); }
.flight-line { width:100%; height:1px; background:var(--border2); position:relative; }
.flight-line::before,.flight-line::after { content:''; position:absolute; top:50%; transform:translateY(-50%); width:5px; height:5px; border-radius:50%; background:var(--muted2); }
.flight-line::before { left:0; } .flight-line::after { right:0; }
.flight-plane { position:absolute; left:50%; top:50%; transform:translate(-50%,-60%); font-size:12px; }
.flight-stops { font-size:10px; } .flight-stops.nonstop { color:var(--green); } .flight-stops.one { color:var(--gold); }
.flight-price .amt { font-family:var(--font-head); font-size:21px; font-weight:800; text-align:right; color:var(--navy); }
.flight-price .pp { font-size:11px; color:var(--muted); text-align:right; margin-top:2px; }
.book-btn { padding:11px 18px; border-radius:var(--r-sm); background:var(--blue); color:#fff; font-size:13px; font-weight:700; font-family:var(--font-head); cursor:pointer; border:none; white-space:nowrap; transition:all .18s; box-shadow:var(--shadow-blue); }
.book-btn:hover { background:var(--blueDark); }
.book-btn.gold { background:var(--gold); color:#fff; box-shadow:0 4px 14px rgba(240,165,0,.3); }

/* ── BUS CARDS ── */
.bus-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:18px 20px; margin-bottom:10px; display:grid; grid-template-columns:170px 1fr auto auto; align-items:center; gap:14px; cursor:pointer; transition:all .2s; box-shadow:var(--shadow-sm); }
.bus-card:hover { box-shadow:var(--shadow-md); transform:translateY(-1px); }
.bus-op-name { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.bus-type { font-size:12px; color:var(--muted); }
.bus-timing { display:flex; align-items:center; gap:16px; }
.bus-t .time { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--navy); }
.bus-t .city { font-size:11px; color:var(--muted); margin-top:2px; }
.bus-mid { text-align:center; color:var(--muted); }
.bus-price { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--blue); text-align:right; }
.bus-seats-left { font-size:12px; color:var(--green); margin-bottom:4px; text-align:right; }

/* ── HOTEL CARDS ── */
.hotel-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; cursor:pointer; transition:all .22s; display:block; box-shadow:var(--shadow-sm); }
.hotel-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-2px); }
.hotel-img { height:165px; position:relative; overflow:hidden; display:flex; align-items:flex-end; padding:12px; background:var(--bg2); }
.hotel-img-bg { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:68px; opacity:.5; }
.hotel-stars { position:relative; z-index:1; color:var(--gold); font-size:14px; letter-spacing:1px; }
.hotel-body { padding:14px 16px; }
.hotel-name { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:3px; }
.hotel-loc { font-size:12px; color:var(--muted); margin-bottom:10px; }
.hotel-amens { display:flex; gap:5px; flex-wrap:wrap; margin-bottom:12px; }
.amen { font-size:11px; padding:3px 9px; border-radius:var(--r-full); background:var(--bg2); color:var(--muted); border:1px solid var(--border); }
.hotel-footer { display:flex; justify-content:space-between; align-items:center; }
.hotel-price { font-family:var(--font-head); font-size:19px; font-weight:800; color:var(--blue); }
.hotel-per { font-size:11px; color:var(--muted); margin-top:2px; }

/* ── UMRAH ── */
.umrah-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; display:grid; grid-template-columns:100px 1fr auto; align-items:stretch; margin-bottom:12px; cursor:pointer; transition:all .2s; box-shadow:var(--shadow-sm); }
.umrah-card:hover { box-shadow:var(--shadow-md); transform:translateY(-1px); }
.umrah-icon { display:flex; align-items:center; justify-content:center; font-size:36px; background:#F3F0FF; }
.umrah-body { padding:16px 18px; }
.umrah-title { font-family:var(--font-head); font-size:16px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.umrah-sub { font-size:12px; color:var(--muted); margin-bottom:10px; line-height:1.5; }
.umrah-tags { display:flex; gap:5px; flex-wrap:wrap; }
.umrah-tag { font-size:11px; padding:3px 9px; border-radius:var(--r-full); background:#F3F0FF; border:1px solid #DDD6FE; color:#6D28D9; }
.umrah-price-col { padding:16px 20px; border-left:1px solid var(--border); text-align:right; display:flex; flex-direction:column; justify-content:center; gap:8px; min-width:155px; }
.umrah-price { font-family:var(--font-head); font-size:22px; font-weight:800; color:var(--blue); }
.umrah-pp { font-size:11px; color:var(--muted); }
.umrah-cta { padding:9px 14px; border-radius:var(--r-sm); background:var(--navy); color:#fff; font-size:13px; font-weight:600; border:none; cursor:pointer; transition:all .18s; text-align:center; text-decoration:none; display:block; }
.umrah-cta:hover { background:var(--navy2); }

/* ── BOOKING / SUMMARY ── */
.bform { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:22px; margin-bottom:14px; box-shadow:var(--shadow-sm); }
.bform-title { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:18px; display:flex; align-items:center; gap:10px; }
.step-num { width:26px; height:26px; border-radius:8px; background:var(--navy); color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; flex-shrink:0; }
.summary-box { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:20px; position:sticky; top:76px; box-shadow:var(--shadow-md); }
.summary-flight-detail { background:var(--blueLight); border:1px solid rgba(27,110,243,0.15); border-radius:var(--r-sm); padding:13px; margin-bottom:14px; }
.summary-row { display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px solid var(--border); font-size:13px; }
.summary-row:last-child { border-bottom:none; }
.summary-row .lbl { color:var(--muted); }
.summary-total { display:flex; justify-content:space-between; align-items:center; margin-top:12px; padding-top:12px; border-top:1.5px solid var(--border2); }
.summary-total .lbl { font-size:15px; font-weight:600; color:var(--navy); }
.summary-total .amt { font-family:var(--font-head); font-size:24px; font-weight:800; color:var(--blue); }
.pay-now-btn { width:100%; padding:14px; border-radius:var(--r); background:var(--blue); color:#fff; font-size:15px; font-weight:700; font-family:var(--font-head); cursor:pointer; border:none; margin-top:14px; transition:all .18s; display:flex; align-items:center; justify-content:center; gap:8px; box-shadow:var(--shadow-blue); }
.pay-now-btn:hover { background:var(--blueDark); }
.promo-row { display:flex; gap:8px; }
.promo-input { flex:1; background:var(--surface2); border:1.5px solid var(--border2); border-radius:var(--r-sm); padding:10px 12px; color:var(--navy); font-size:13px; outline:none; }
.promo-input:focus { border-color:var(--blue); }
.promo-apply { padding:10px 14px; border-radius:var(--r-sm); background:var(--blueLight); color:var(--blue); font-size:13px; font-weight:700; border:none; cursor:pointer; transition:all .18s; white-space:nowrap; }
.promo-apply:hover { background:var(--blue); color:#fff; }
.promo-success { font-size:12px; color:var(--green); margin-top:5px; }
.secure-badge { text-align:center; font-size:11px; color:var(--muted); margin-top:8px; display:flex; align-items:center; justify-content:center; gap:4px; }
.pay-logos { display:flex; gap:5px; flex-wrap:wrap; margin-top:12px; justify-content:center; }
.pay-logo { background:var(--bg2); border:1px solid var(--border2); border-radius:5px; padding:4px 9px; font-size:11px; font-weight:700; color:var(--muted); }
.booking-steps { display:flex; background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:4px; margin-bottom:22px; box-shadow:var(--shadow-sm); }
.bstep { flex:1; padding:10px 6px; text-align:center; border-radius:var(--r); font-size:13px; font-weight:600; color:var(--muted); transition:all .2s; cursor:pointer; }
.bstep.active { background:var(--navy); color:#fff; }
.bstep.done { color:var(--green); }

/* ── CONFIRM ── */
.confirm-icon { width:76px; height:76px; border-radius:50%; background:var(--greenLight); border:2px solid rgba(22,163,74,.3); display:flex; align-items:center; justify-content:center; font-size:34px; margin:0 auto 24px; animation:popIn .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes popIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.ref-box { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:22px; margin-bottom:22px; box-shadow:var(--shadow); }
.ref-lbl { font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:8px; }
.ref-code { font-family:var(--font-head); font-size:30px; font-weight:800; color:var(--blue); letter-spacing:4px; }
.ticket-row { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--border); font-size:13.5px; }
.ticket-row:last-child { border-bottom:none; }
.ticket-row .lbl { color:var(--muted); }

/* ── MY BOOKINGS ── */
.bk-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r-lg); padding:20px; margin-bottom:12px; box-shadow:var(--shadow-sm); }
.bk-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:14px; gap:12px; flex-wrap:wrap; }
.bk-ref { font-family:var(--font-head); font-size:17px; font-weight:800; color:var(--navy); }
.bk-airline { font-size:13px; color:var(--muted); margin-top:3px; }
.bk-route { font-family:var(--font-head); font-size:20px; font-weight:800; color:var(--navy); }
.bk-actions { display:flex; gap:7px; margin-top:14px; flex-wrap:wrap; }
.bk-btn { padding:8px 16px; border-radius:var(--r-full); font-size:13px; font-weight:500; border:1.5px solid var(--border2); color:var(--muted); background:none; cursor:pointer; transition:all .18s; }
.bk-btn:hover { color:var(--navy); border-color:var(--navy); }
.bk-btn.danger:hover { color:var(--red); border-color:var(--red); }
.bk-btn.primary { background:var(--blue); color:#fff; border-color:var(--blue); box-shadow:var(--shadow-blue); }
.bk-btn.primary:hover { background:var(--blueDark); }

/* ── WHY CARDS ── */
.why-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--r); padding:22px; box-shadow:var(--shadow-sm); }
.why-icon { font-size:24px; margin-bottom:12px; width:46px; height:46px; background:var(--blueLight); border-radius:12px; display:flex; align-items:center; justify-content:center; }
.why-title { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:7px; }
.why-text { font-size:13px; color:var(--muted); line-height:1.65; }

/* ── STATS BANNER ── */
.stats-banner { background:var(--navy); padding:40px 32px; }
.stats-inner { display:grid; grid-template-columns:repeat(4,1fr); max-width:900px; margin:0 auto; }
.stat-item { text-align:center; padding:20px; border-right:1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right:none; }
.stat-num { font-family:var(--font-head); font-size:36px; font-weight:800; line-height:1; margin-bottom:5px; color:#fff; }
.stat-lbl { font-size:13px; color:rgba(255,255,255,0.5); }

/* ── APP BANNER ── */
.app-banner { background:linear-gradient(135deg,var(--navy) 0%,var(--navy2) 100%); border-radius:var(--r-xl); padding:34px; display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap; margin:0 20px; box-shadow:0 16px 48px rgba(13,33,68,0.18); }
.app-banner h2 { font-size:24px; font-weight:800; color:#fff; margin-bottom:6px; }
.app-banner p { font-size:14px; color:rgba(255,255,255,0.65); line-height:1.55; }
.app-store-btn { padding:11px 18px; border-radius:var(--r-sm); background:rgba(255,255,255,0.12); border:1.5px solid rgba(255,255,255,0.2); color:#fff; font-size:13.5px; font-weight:600; cursor:pointer; display:flex; align-items:center; gap:8px; transition:all .18s; font-family:var(--font-body); }
.app-store-btn:hover { background:rgba(255,255,255,0.2); }

/* ── PROMO STRIP ── */
.promo-strip { background:linear-gradient(90deg,var(--blueLight),var(--goldLight)); border:1px solid rgba(27,110,243,0.15); border-radius:var(--r); padding:14px 18px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; box-shadow:var(--shadow-sm); }
.promo-code-badge { font-family:var(--font-head); font-size:16px; font-weight:800; letter-spacing:2px; color:var(--blue); background:var(--surface); border:1.5px dashed rgba(27,110,243,0.35); padding:6px 16px; border-radius:var(--r-sm); }

/* ── LIVE BADGE ── */
.live-badge { display:inline-flex; align-items:center; gap:8px; background:var(--greenLight); border:1px solid rgba(22,163,74,0.25); padding:5px 13px; border-radius:var(--r-full); font-size:12px; font-weight:500; color:var(--green); }
.live-dot { width:7px; height:7px; background:var(--green); border-radius:50%; animation:livePulse 2s infinite; }
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(22,163,74,.4)} 50%{box-shadow:0 0 0 5px rgba(22,163,74,0)} }

/* ── SEAT MAP ── */
.seat-map { background:var(--surface2); border:1px solid var(--border); border-radius:var(--r); padding:18px; }
.seat-legend { display:flex; gap:16px; margin-bottom:14px; font-size:12px; flex-wrap:wrap; }
.seat-legend-item { display:flex; align-items:center; gap:6px; color:var(--muted); }
.seat-legend-dot { width:14px; height:14px; border-radius:4px; }
.seats-grid { display:grid; grid-template-columns:40px 40px 16px 40px 40px; gap:6px; justify-content:center; }
.seat { width:40px; height:40px; border-radius:8px; font-size:11px; font-weight:600; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .18s; border:1.5px solid transparent; }
.seat.available { background:var(--greenLight); border-color:rgba(22,163,74,.3); color:var(--green); }
.seat.taken     { background:var(--bg2); border-color:var(--border); color:var(--muted2); cursor:not-allowed; }
.seat.selected  { background:var(--blue); border-color:var(--blue); color:#fff; box-shadow:0 3px 10px rgba(27,110,243,.3); }
.seat.available:hover { background:var(--blueLight); border-color:var(--blue); color:var(--blue); }
.seat-gap { width:16px; height:40px; }

/* ── FOOTER ── */
footer { background:var(--navy); padding:52px 32px 28px; margin-top:60px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; max-width:1200px; margin:0 auto 40px; }
.footer-brand-logo { font-family:var(--font-head); font-size:19px; font-weight:800; color:#fff; display:block; margin-bottom:12px; }
.footer-brand-logo em { color:var(--gold); font-style:normal; }
.footer-brand p { font-size:13px; color:rgba(255,255,255,0.4); line-height:1.7; max-width:280px; }
.footer-socials { display:flex; gap:8px; margin-top:16px; }
.footer-social { width:34px; height:34px; border-radius:50%; border:1px solid rgba(255,255,255,0.15); background:none; color:rgba(255,255,255,0.45); font-size:13px; cursor:pointer; transition:all .18s; display:flex; align-items:center; justify-content:center; }
.footer-social:hover { color:#fff; border-color:rgba(255,255,255,0.4); }
.footer-col h4 { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,0.35); margin-bottom:14px; }
.footer-col a { display:block; font-size:13.5px; color:rgba(255,255,255,0.5); margin-bottom:10px; cursor:pointer; transition:color .15s; }
.footer-col a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(255,255,255,0.08); padding-top:22px; max-width:1200px; margin:0 auto; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:13px; color:rgba(255,255,255,0.3); }

/* ── EXTRA OPTIONS ── */
.extra-option { display:flex; align-items:center; gap:14px; background:var(--surface2); border:1.5px solid var(--border2); border-radius:var(--r-sm); padding:13px 15px; cursor:pointer; transition:all .18s; }
.extra-option:hover { border-color:var(--blue); background:var(--blueLight); }
.extra-option input[type=checkbox] { accent-color:var(--blue); width:16px; height:16px; flex-shrink:0; cursor:pointer; }
.extra-option-name { font-size:14px; font-weight:500; color:var(--navy); margin-bottom:2px; }
.extra-option-price { font-size:12px; color:var(--muted); }
.pay-option { display:flex; align-items:center; gap:14px; padding:14px 16px; background:var(--surface2); border:1.5px solid var(--border2); border-radius:var(--r-sm); cursor:pointer; transition:all .18s; margin-bottom:8px; }
.pay-option:hover { border-color:var(--blue); }
.pay-option input[type=radio] { accent-color:var(--blue); width:16px; height:16px; flex-shrink:0; cursor:pointer; }
.pay-option-name { font-size:14px; font-weight:500; color:var(--navy); }
.pay-option-sub { font-size:12px; color:var(--muted); }
.payment-section { display:none; }
.payment-section.active { display:block; }

/* ── LAYOUT ── */
.section    { padding:44px 20px; max-width:1200px; margin:0 auto; }
.section-sm { padding:28px 20px; max-width:1200px; margin:0 auto; }
.page-wrap    { max-width:1200px; margin:0 auto; padding:24px 20px; }
.page-wrap-sm { max-width:900px;  margin:0 auto; padding:24px 20px; }
.page-wrap-xs { max-width:600px;  margin:0 auto; padding:24px 20px; }
.page-top { padding-top:60px; }
.sec-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.sec-title { font-size:21px; font-weight:700; color:var(--navy); }
.sec-link { font-size:13px; color:var(--blue); cursor:pointer; font-weight:500; }
.sec-link:hover { text-decoration:underline; }
.grid-2 { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.grid-auto    { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:14px; }
.grid-auto-lg { display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:16px; }
.sort-group { display:flex; gap:6px; flex-wrap:wrap; }
.sort-btn { padding:7px 14px; border-radius:var(--r-sm); font-size:13px; border:1.5px solid var(--border2); color:var(--muted); cursor:pointer; background:var(--surface); transition:all .18s; box-shadow:var(--shadow-sm); }
.sort-btn.active,.sort-btn:hover { border-color:var(--navy); color:var(--navy); }
.faq-item { border-bottom:1px solid var(--border); padding:16px 0; }
.faq-item:last-child { border-bottom:none; }
.faq-q { font-size:15px; font-weight:600; color:var(--navy); cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq-q::after { content:'+'; font-size:20px; color:var(--muted); flex-shrink:0; transition:transform .2s; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a { font-size:13.5px; color:var(--muted); line-height:1.7; padding-top:10px; display:none; }
.faq-item.open .faq-a { display:block; }
.toast { position:fixed; bottom:24px; right:24px; background:var(--navy); color:#fff; border-radius:var(--r); padding:14px 20px; font-size:14px; z-index:9999; transform:translateY(80px); opacity:0; transition:all .35s; max-width:300px; box-shadow:var(--shadow-lg); }
.toast.show { transform:translateY(0); opacity:1; }
.toast.success { background:var(--green); }

/* ── CAROUSEL ── */
.carousel-wrap { position:relative; }
.carousel { display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; -ms-overflow-style:none; scrollbar-width:none; padding-bottom:4px; }
.carousel::-webkit-scrollbar { display:none; }
.carousel > * { scroll-snap-align:start; flex-shrink:0; }
.carousel-dots { display:flex; gap:6px; justify-content:center; margin-top:12px; }
.carousel-dot { width:6px; height:6px; border-radius:50%; background:var(--muted2); transition:all .2s; }
.carousel-dot.active { width:18px; border-radius:3px; background:var(--blue); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom:none; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:768px) {
  .navbar { padding:0 16px; }
  .nav-links,.nav-btn-ghost { display:none; }
  .hamburger { display:flex; }
  .flight-card { grid-template-columns:1fr 1fr; gap:10px; padding:14px 16px; }
  .flight-route { display:none; }
  .book-btn { grid-column:1/-1; width:100%; padding:12px; text-align:center; }
  .bus-card { grid-template-columns:1fr; gap:10px; }
  .bus-right { text-align:left; }
  .umrah-card { grid-template-columns:80px 1fr; }
  .umrah-price-col { display:none; }
  .grid-3 { grid-template-columns:1fr 1fr; }
  .grid-4 { grid-template-columns:1fr 1fr; }
  .grid-auto-lg { grid-template-columns:1fr; }
  .field-row-2 { grid-template-columns:1fr; }
  .field-row-3 { grid-template-columns:1fr 1fr; }
  .booking-layout { grid-template-columns:1fr !important; }
  .summary-box { position:static; }
  .booking-steps .bstep { font-size:11px; padding:9px 4px; }
  .section,.section-sm { padding:28px 16px; }
  .page-wrap,.page-wrap-sm,.page-wrap-xs { padding:16px; }
  footer { padding:36px 16px 20px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-col:not(.footer-brand) { display:none; }
  .app-banner { margin:0 16px; padding:24px; }
  .app-banner h2 { font-size:20px; }
  .stats-inner { grid-template-columns:repeat(2,1fr); }
  .stats-banner { padding:28px 16px; }
}
@media(max-width:480px) {
  .flight-card { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:1fr; }
  .stats-inner { grid-template-columns:1fr 1fr; }
}
