/* ════════════════════════════════════════════════════════════
   skybook — Main Stylesheet
   ════════════════════════════════════════════════════════════ */
:root {
    --primary:     #1a56db;
    --primary-dark:#1344b0;
    --secondary:   #0e9f6e;
    --accent:      #f59e0b;
    --dark:        #111827;
    --gray:        #6b7280;
    --light-bg:    #f3f4f6;
    --white:       #ffffff;
    --shadow:      0 4px 24px rgba(0,0,0,.08);
    --radius:      12px;
    --radius-sm:   8px;
}

* { box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--dark); }
a { text-decoration: none; color: var(--primary); }
a:hover { color: var(--primary-dark); }

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
    background: #0f172a;
    color: #94a3b8;
    padding: 6px 0;
    font-size: 12px;
}
.top-bar a { color: #94a3b8; }
.top-bar a:hover { color: white; }

/* ── Navbar ───────────────────────────────────────────────── */
.skybook-nav {
    background: linear-gradient(135deg, var(--primary) 0%, #1344b0 100%);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(26,86,219,.3);
}
.skybook-nav .navbar-brand { font-size: 22px; letter-spacing: .5px; }
.skybook-nav .nav-link { color: rgba(255,255,255,.85) !important; font-size: 14px; }
.skybook-nav .nav-link:hover { color: white !important; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a6b 50%, #1a56db 100%);
    min-height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><circle cx="600" cy="100" r="250" fill="rgba(255,255,255,0.03)"/><circle cx="100" cy="350" r="180" fill="rgba(255,255,255,0.02)"/></svg>') no-repeat center;
    background-size: cover;
}
.hero-content { position: relative; z-index: 2; padding: 40px 0; }
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero-subtitle { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 30px; }

/* ── Search Card ──────────────────────────────────────────── */
.search-card {
    background: white;
    border-radius: var(--radius);
    padding: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    overflow: hidden;
}
.search-tabs {
    border-bottom: 1px solid #e5e7eb;
    padding: 0 20px;
    background: #f9fafb;
    gap: 0;
}
.search-tabs .nav-link {
    color: var(--gray);
    font-weight: 500;
    font-size: 14px;
    padding: 14px 20px;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}
.search-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}
.search-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 20px;
    flex-wrap: wrap;
}
.search-field {
    flex: 1;
    min-width: 140px;
    position: relative;
}
.search-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.search-field .form-control {
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    transition: border-color .2s;
}
.search-field .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.airport-field { min-width: 180px; flex: 1.5; }
.airport-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    z-index: 9999;
    max-height: 320px;
    overflow-y: auto;
    display: none;
}
.airport-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 10px;
}
.airport-suggestion-item:hover { background: #f0f5ff; }
.airport-iata {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    min-width: 42px;
}
.airport-name { font-size: 14px; font-weight: 500; }
.airport-country { font-size: 12px; color: var(--gray); }
.swap-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 2px;
    transition: all .2s;
    color: var(--primary);
}
.swap-btn:hover { background: var(--primary); color: white; border-color: var(--primary); transform: rotate(180deg); }
.pax-dropdown-trigger {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    background: white;
    user-select: none;
}
.pax-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    z-index: 9999;
    min-width: 280px;
}
.pax-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.pax-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}
.pax-counter button {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    background: white;
    color: var(--primary);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
.pax-counter button:hover { background: var(--primary); color: white; }
.pax-counter span { font-weight: 700; font-size: 18px; min-width: 20px; text-align: center; }
.cabin-btn {
    display: flex;
    align-items: center;
    padding: 7px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all .15s;
}
.cabin-btn input { display: none; }
.cabin-btn.active, .cabin-btn:has(input:checked) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-search {
    background: linear-gradient(135deg, var(--primary) 0%, #1344b0 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .15s, box-shadow .15s;
    min-width: 160px;
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,86,219,.4); }

/* ── Popular Routes ───────────────────────────────────────── */
.popular-route-tag {
    display: inline-block;
    background: rgba(255,255,255,.1);
    color: white;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    margin: 4px 3px;
    transition: background .15s;
}
.popular-route-tag:hover { background: rgba(255,255,255,.2); color: white; }

/* ── Features ─────────────────────────────────────────────── */
.feature-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform .2s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 22px;
    color: var(--primary);
}

/* ── Compact Search Bar ───────────────────────────────────── */
.compact-search-bar {
    background: var(--primary);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

/* ── Filter Card ──────────────────────────────────────────── */
.filter-card {
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.filter-section { margin-bottom: 20px; border-bottom: 1px solid #f3f4f6; padding-bottom: 16px; }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; }
.filter-title { font-size: 13px; font-weight: 700; color: var(--dark); text-transform: uppercase; letter-spacing: .4px; margin-bottom: 10px; }
.time-filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.time-btn {
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 8px;
    text-align: center;
    cursor: pointer;
    background: white;
    font-size: 11px;
    color: var(--gray);
    transition: all .15s;
}
.time-btn.active { border-color: var(--primary); background: #eff6ff; color: var(--primary); }

/* ── Results Topbar ───────────────────────────────────────── */
.results-topbar {
    background: white;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* ── Flight Card ──────────────────────────────────────────── */
.flight-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    margin-bottom: 12px;
    border: 1.5px solid #e5e7eb;
    transition: border-color .15s, box-shadow .15s;
    overflow: hidden;
    cursor: pointer;
}
.flight-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(26,86,219,.12); }
.flight-card.selected { border-color: var(--primary); background: #f0f5ff; }
.flight-card-body { padding: 18px 20px; }
.airline-logo {
    width: 44px;
    height: 44px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--primary);
    flex-shrink: 0;
}
.flight-time { font-size: 22px; font-weight: 700; color: var(--dark); }
.flight-iata { font-size: 11px; color: var(--gray); font-weight: 500; }
.flight-duration-line {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.duration-line { width: 100%; height: 1px; background: #d1d5db; position: relative; }
.duration-line::before,
.duration-line::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #d1d5db;
    border-radius: 50%;
    position: absolute;
    top: -2.5px;
}
.duration-line::before { left: 0; }
.duration-line::after  { right: 0; }
.duration-label {
    position: absolute;
    top: -18px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    white-space: nowrap;
}
.stop-label { font-size: 11px; color: var(--gray); margin-top: 4px; }
.flight-price { font-size: 24px; font-weight: 800; color: var(--primary); }
.price-note   { font-size: 11px; color: var(--gray); }
.btn-book {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background .15s;
}
.btn-book:hover { background: #0c8a5c; }
.flight-card-footer {
    background: #f9fafb;
    border-top: 1px solid #f3f4f6;
    padding: 8px 20px;
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--gray);
}
.flight-card-footer span { display: flex; align-items: center; gap: 5px; }

/* ── Booking Steps ────────────────────────────────────────── */
.booking-steps {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 70px; }
.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    background: white;
    font-size: 16px;
    transition: all .2s;
}
.step.active .step-circle   { border-color: var(--primary); color: var(--primary); background: #eff6ff; }
.step.completed .step-circle { border-color: var(--secondary); background: var(--secondary); color: white; }
.step-label { font-size: 11px; font-weight: 600; color: var(--gray); text-align: center; }
.step.active .step-label    { color: var(--primary); }
.step.completed .step-label { color: var(--secondary); }
.step-line { flex: 1; height: 2px; background: #e5e7eb; min-width: 30px; transition: background .2s; }
.step-line.completed { background: var(--secondary); }

/* ── Booking Card ─────────────────────────────────────────── */
.booking-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 16px;
}
.booking-card-header {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    padding: 14px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.booking-card-body { padding: 20px; }

/* ── Seat Map ─────────────────────────────────────────────── */
.airplane-container { text-align: center; }
.airplane-nose { margin-bottom: 16px; }
.airplane-body { display: inline-block; min-width: 340px; max-width: 100%; overflow-x: auto; }
.seat-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    justify-content: center;
}
.seat-row-num {
    width: 28px;
    text-align: right;
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
}
.seat-col-header {
    width: 32px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
}
.aisle-gap { width: 20px; }
.seat {
    width: 32px;
    height: 32px;
    border-radius: 6px 6px 4px 4px;
    border: 1.5px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .1s;
    position: relative;
}
.seat::after { content: ''; position: absolute; bottom: -4px; left: 8px; right: 8px; height: 4px; background: inherit; border-radius: 0 0 3px 3px; opacity: .6; }
.seat:hover  { transform: scale(1.15); z-index: 1; }
.seat.available  { background: #d1fae5; border-color: #6ee7b7; color: #065f46; }
.seat.selected   { background: var(--primary); border-color: var(--primary-dark); color: white; }
.seat.occupied   { background: #f3f4f6; border-color: #d1d5db; color: #9ca3af; cursor: not-allowed; }
.seat.paid       { background: #fef3c7; border-color: #fcd34d; color: #92400e; }
.seat.exit       { background: #fee2e2; border-color: #fca5a5; color: #991b1b; }
.seat.unavailable { background: #f9fafb; border-color: #f3f4f6; cursor: default; }
.exit-row-label {
    width: 100%;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    color: #dc2626;
    background: #fee2e2;
    padding: 3px;
    border-radius: 4px;
    margin: 4px 0;
    letter-spacing: 1px;
}
.seat-demo {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 4px 4px 3px 3px;
    border: 1.5px solid;
    vertical-align: middle;
    margin-right: 4px;
}
.seat-demo.available  { background: #d1fae5; border-color: #6ee7b7; }
.seat-demo.selected   { background: var(--primary); border-color: var(--primary-dark); }
.seat-demo.occupied   { background: #f3f4f6; border-color: #d1d5db; }
.seat-demo.paid       { background: #fef3c7; border-color: #fcd34d; }
.seat-demo.exit       { background: #fee2e2; border-color: #fca5a5; }
.selected-seats-summary { background: #f0f5ff; border: 1px solid #bfdbfe; border-radius: var(--radius-sm); padding: 14px; }

/* ── Add-on Cards ─────────────────────────────────────────── */
.addon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .15s;
}
.addon-card input { display: none; }
.addon-card:hover, .addon-card.selected { border-color: var(--primary); background: #f0f5ff; }
.addon-card-icon  { font-size: 22px; margin-bottom: 6px; }
.addon-card-title { font-size: 12px; font-weight: 600; }
.addon-card-desc  { font-size: 10px; }
.baggage-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    transition: all .15s;
}
.baggage-card input { display: none; }
.baggage-card:hover, .baggage-card.selected { border-color: var(--primary); background: #f0f5ff; }

/* ── Account Options ──────────────────────────────────────── */
.account-options { display: flex; flex-direction: column; gap: 10px; }
.account-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .15s;
}
.account-option input { display: none; }
.account-option.selected { border-color: var(--primary); background: #f0f5ff; }
.account-type-btn {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    justify-content: center;
}
.account-type-btn input { display: none; }
.account-type-btn.active { border-color: var(--primary); background: #eff6ff; color: var(--primary); }

/* ── Price Breakdown ──────────────────────────────────────── */
.price-breakdown { background: #f9fafb; border-radius: var(--radius-sm); padding: 16px; }
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 14px;
    border-bottom: 1px dashed #e5e7eb;
}
.price-row:last-child { border-bottom: none; }
.price-row.total-row { font-size: 16px; padding-top: 10px; margin-top: 4px; border-top: 2px solid #e5e7eb; border-bottom: none; }
.fare-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid #f3f4f6;
}
.fare-row.total { font-size: 15px; font-weight: 700; border-top: 2px solid #e5e7eb; border-bottom: none; padding-top: 10px; }

/* ── Payment Methods ──────────────────────────────────────── */
.payment-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: center;
    transition: all .15s;
    font-size: 12px;
}
.payment-method-card input { display: none; }
.payment-method-card:has(input:checked), .payment-method-card.selected {
    border-color: var(--primary); background: #eff6ff;
}

/* ── Ticket ───────────────────────────────────────────────── */
.ticket-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}
.ticket-header {
    background: linear-gradient(135deg, var(--primary), #1344b0);
    padding: 24px 30px;
    color: white;
}
.ticket-logo { font-size: 22px; font-weight: 800; }
.pnr-display { font-size: 28px; font-weight: 800; letter-spacing: 4px; color: white; }
.ticket-route {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}
.route-city { flex: 1; }
.route-middle { flex: 2; text-align: center; }
.route-line { font-size: 28px; color: var(--primary); }
.city-code { font-size: 42px; font-weight: 900; color: var(--dark); letter-spacing: 2px; }
.city-time { font-size: 13px; }
.ticket-details { padding: 20px 30px; }
.ticket-detail-label { font-size: 11px; text-transform: uppercase; color: var(--gray); letter-spacing: .5px; }
.ticket-detail-value { font-size: 15px; font-weight: 600; margin-top: 3px; }
.ticket-tear-line {
    height: 1px;
    background: repeating-linear-gradient(90deg, #d1d5db 0, #d1d5db 8px, transparent 8px, transparent 16px);
    margin: 0 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ticket-tear-line span {
    background: #f9fafb;
    padding: 0 12px;
    font-size: 10px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 2px;
}
.ticket-payment { background: #f9fafb; }

/* ── Auth Pages ───────────────────────────────────────────── */
.auth-page {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f5ff, #e0e9ff);
    padding: 40px 0;
}
.auth-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
}
.auth-logo { text-align: center; margin-bottom: 10px; }
.auth-title { text-align: center; font-weight: 800; font-size: 22px; margin-bottom: 4px; }
.auth-subtitle { text-align: center; margin-bottom: 24px; }

/* ── User Sidebar ─────────────────────────────────────────── */
.user-sidebar {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.user-avatar-section { background: linear-gradient(135deg, var(--primary), #1344b0); }
.user-avatar { color: white; }
.user-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: background .15s;
}
.user-sidebar-nav a:hover { background: #f0f5ff; color: var(--primary); }
.user-sidebar-nav a.active { background: #eff6ff; color: var(--primary); font-weight: 600; }
.user-sidebar-nav a i { width: 18px; text-align: center; }

/* ── Booking List Card ────────────────────────────────────── */
.booking-list-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: border-color .15s;
}
.booking-list-card:hover { border-color: var(--primary); }
.pnr-badge {
    background: #eff6ff;
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
}
.route-display { font-size: 18px; font-weight: 700; }
.city-code-sm { font-size: 20px; font-weight: 800; color: var(--dark); }

/* ── Manage Booking Actions ───────────────────────────────── */
.action-card {
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: var(--radius);
    transition: border-color .2s, box-shadow .2s;
}
.action-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,86,219,.1); }

/* ── Footer ───────────────────────────────────────────────── */
.skybook-footer { background: #0f172a; }
.footer-links a { display: block; color: #6b7280; font-size: 14px; margin-bottom: 8px; }
.footer-links a:hover { color: white; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 6px; }
.payment-icons img { border-radius: 4px; background: white; padding: 2px; }
.footer-bottom { color: #4b5563; }
.social-links a { transition: color .15s; }
.social-links a:hover { color: white !important; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
    .search-row { flex-direction: column; }
    .search-field { width: 100%; min-width: unset; }
    .swap-btn { transform: rotate(90deg); width: 36px; height: 36px; align-self: center; }
    .flight-time { font-size: 18px; }
    .city-code { font-size: 30px; }
    .ticket-header { padding: 16px 20px; }
    .pnr-display { font-size: 22px; }
    .auth-card { padding: 24px 20px; }
    .booking-steps { gap: 5px; }
    .step-circle { width: 36px; height: 36px; }
    .step-label { font-size: 9px; }
}

@media print {
    .skybook-nav, .compact-search-bar, .skybook-footer, .no-print { display: none !important; }
    body { background: white; }
    .ticket-card { box-shadow: none; border: 1px solid #ddd; }
}
