/* =============================================
   YETLIX - GLOBAL STYLES
   ============================================= */

@import url('[fonts.googleapis.com](https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap)');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Brand Colors - Yetlix */
    --primary:       #fa7406;
    --primary-dark:  #d56103;
    --primary-light: #fff4eb;
    --primary-rgb:   250, 116, 6;
    
    /* Neutrals */
    --ink:           #0D0D0D;
    --ink2:          #3A3A3A;
    --muted:         #6B7280;
    --surface:       #F8F9FA;
    --white:         #FFFFFF;
    --border:        rgba(0,0,0,0.08);
    --border-md:     rgba(0,0,0,0.15);
    
    /* Semantic */
    --success:       #059669;
    --success-bg:    #ECFDF5;
    --warn:          #D97706;
    --warn-bg:       #FFFBEB;
    --error:         #DC2626;
    --error-bg:      #FEF2F2;
    
    /* Radius */
    --radius-xs:     4px;
    --radius-sm:     6px;
    --radius-md:     10px;
    --radius-lg:     14px;
    --radius-xl:     20px;
    
    /* Typography */
    --font-head:     'Syne', system-ui, sans-serif;
    --font-body:     'DM Sans', system-ui, sans-serif;
    
    /* Shadows */
    --shadow-xs:     0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:     0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg:     0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl:     0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

html { 
    scroll-behavior: smooth; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body { 
    font-family: var(--font-body); 
    background: var(--surface); 
    color: var(--ink); 
    font-size: 15px; 
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    line-height: 1.7;
}

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---- BUTTONS ---- */
.btn-primary {
    background: var(--primary); 
    color: var(--white);
    border: none; 
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head); 
    font-size: 14px; 
    font-weight: 600;
    cursor: pointer; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}
.btn-primary:hover { 
    background: var(--primary-dark); 
    transform: translateY(-1px); 
    box-shadow: var(--shadow-md);
}
.btn-primary:active { 
    transform: translateY(0) scale(0.98); 
}

.btn-ghost {
    background: transparent; 
    color: var(--ink);
    border: 1.5px solid var(--border-md); 
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body); 
    font-size: 14px; 
    font-weight: 500;
    cursor: pointer; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.btn-ghost:hover { 
    border-color: var(--primary); 
    color: var(--primary);
    background: var(--primary-light);
}

.btn-outline {
    background: transparent; 
    color: var(--primary);
    border: 1.5px solid var(--primary); 
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body); 
    font-size: 14px; 
    font-weight: 500;
    cursor: pointer; 
    text-decoration: none; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.btn-outline:hover { 
    background: var(--primary); 
    color: var(--white); 
}

/* Legacy support */
.btn-red { 
    background: var(--primary); 
    color: var(--white);
    border: none; 
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head); 
    font-size: 14px; 
    font-weight: 600;
    cursor: pointer; 
    text-decoration: none; 
    display: inline-block;
    transition: all 0.2s ease;
}
.btn-red:hover { 
    background: var(--primary-dark); 
    transform: translateY(-1px);
    color: var(--white);
}

.btn-outline-red {
    background: transparent; 
    color: var(--primary);
    border: 1.5px solid var(--primary); 
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body); 
    font-size: 14px; 
    font-weight: 500;
    cursor: pointer; 
    text-decoration: none; 
    display: inline-block;
    transition: all 0.2s ease;
}
.btn-outline-red:hover { 
    background: var(--primary); 
    color: var(--white); 
}

/* ---- ALERTS ---- */
.alert {
    padding: 14px 20px; 
    font-size: 14px; 
    font-weight: 500;
    border-left: 4px solid; 
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 0;
}
.alert-success { 
    background: var(--success-bg); 
    border-color: var(--success); 
    color: var(--success); 
}
.alert-error { 
    background: var(--error-bg); 
    border-color: var(--error); 
    color: var(--error); 
}

/* ---- FORM ELEMENTS ---- */
.form-group { margin-bottom: 20px; }
.form-label { 
    display: block; 
    font-size: 13px; 
    font-weight: 500; 
    color: var(--ink2); 
    margin-bottom: 8px; 
    letter-spacing: 0.01em;
}
.form-control {
    width: 100%; 
    padding: 12px 16px;
    border: 1.5px solid var(--border-md); 
    border-radius: var(--radius-sm);
    font-family: var(--font-body); 
    font-size: 15px; 
    color: var(--ink);
    background: var(--white); 
    transition: all 0.2s ease;
    outline: none;
}
.form-control:focus { 
    border-color: var(--primary); 
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.form-control.is-invalid { 
    border-color: var(--error); 
}
.invalid-feedback { 
    font-size: 13px; 
    color: var(--error); 
    margin-top: 6px; 
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    background: var(--ink); 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px;
    display: flex; 
    align-items: center; 
    height: 64px; 
    gap: 40px;
}

/* Yetlix Logo */
.logo { 
    font-family: var(--font-head); 
    font-size: 24px; 
    font-weight: 800; 
    color: var(--white); 
    text-decoration: none; 
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 4px;
    margin-right: 4px;
}
.logo-icon svg {
    width: 18px;
    height: 18px;
}
.logo-text {
    color: var(--primary);
}
.logo-arrow {
    color: var(--primary);
    font-size: 20px;
    margin-left: -2px;
}

.nav-links { 
    display: flex; 
    gap: 32px; 
    flex: 1; 
}
.nav-links a { 
    color: rgba(255,255,255,0.6); 
    font-size: 14px; 
    text-decoration: none; 
    transition: color 0.2s ease; 
    font-weight: 500; 
}
.nav-links a:hover, 
.nav-links a.active { 
    color: var(--white); 
}

.nav-actions { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
}
.nav-actions .btn-ghost { 
    color: rgba(255,255,255,0.8); 
    border-color: rgba(255,255,255,0.2);
    padding: 8px 16px;
}
.nav-actions .btn-ghost:hover { 
    color: var(--white); 
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-actions .btn-red {
    padding: 8px 18px;
}

.nav-hamburger { 
    display: none; 
    background: none; 
    border: none; 
    color: var(--white); 
    font-size: 24px; 
    cursor: pointer;
    padding: 8px;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    z-index: 999;
}
.nav-mobile.active {
    display: block;
}
.nav-mobile a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
}
.nav-mobile a:hover {
    color: var(--white);
}
.nav-mobile .btn-ghost,
.nav-mobile .btn-red {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
}

.nav-user { 
    position: relative; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    cursor: pointer; 
}
.user-avatar { 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    background: var(--primary); 
    color: var(--white); 
    font-size: 13px; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-family: var(--font-head); 
}
.user-name { 
    color: var(--white); 
    font-size: 14px;
    font-weight: 500;
}
.dropdown { 
    display: none; 
    position: absolute; 
    top: 48px; 
    right: 0; 
    background: var(--white); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-xl); 
    min-width: 200px; 
    overflow: hidden; 
    z-index: 100; 
}
.nav-user:hover .dropdown { display: block; }
.dropdown a, 
.dropdown button { 
    display: block; 
    width: 100%; 
    padding: 12px 18px; 
    font-size: 14px; 
    text-decoration: none; 
    color: var(--ink2); 
    background: none; 
    border: none; 
    text-align: left; 
    cursor: pointer; 
    font-family: var(--font-body); 
    transition: all 0.15s ease; 
}
.dropdown a:hover, 
.dropdown button:hover { 
    background: var(--surface); 
    color: var(--primary); 
}

/* =============================================
   HOME PAGE - HERO
   ============================================= */
.hero {
    background: var(--ink); 
    padding: 48px 24px 0;
    position: relative; 
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; 
    top: -100px; 
    right: -100px;
    width: 500px; 
    height: 500px; 
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; 
    bottom: -150px; 
    left: -100px;
    width: 400px; 
    height: 400px; 
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner { 
    max-width: 1200px; 
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.15); 
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: #ffab6a; 
    font-size: 12px; 
    font-weight: 600;
    padding: 6px 16px; 
    border-radius: 24px; 
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.hero h1 { 
    font-family: var(--font-head); 
    font-size: 56px; 
    font-weight: 800; 
    color: var(--white); 
    line-height: 1.1; 
    letter-spacing: -0.03em; 
    margin-bottom: 16px; 
}
.hero h1 em { 
    font-style: normal; 
    color: var(--primary); 
}

.hero > .hero-inner > p { 
    color: rgba(255,255,255,0.5); 
    font-size: 16px; 
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

/* Search Card */
.search-card {
    background: var(--white); 
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 28px 28px 20px; 
    box-shadow: var(--shadow-xl);
}

.tab-row { 
    display: flex; 
    gap: 8px; 
    margin-bottom: 24px; 
}
.tab-btn {
    padding: 10px 24px; 
    border-radius: var(--radius-sm);
    font-size: 14px; 
    font-weight: 500; 
    cursor: pointer;
    border: 1.5px solid var(--border-md); 
    background: transparent;
    color: var(--muted); 
    font-family: var(--font-body); 
    transition: all 0.2s ease;
}
.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.tab-btn.active { 
    background: var(--primary); 
    color: var(--white); 
    border-color: var(--primary); 
}

.search-form { 
    display: flex; 
    border: 1.5px solid var(--border-md); 
    border-radius: var(--radius-md); 
    overflow: visible; 
    margin-bottom: 20px; 
}

.search-field { 
    flex: 1; 
    padding: 16px 20px; 
    border-right: 1px solid var(--border); 
    cursor: pointer; 
    transition: background 0.15s ease; 
    min-width: 0; 
    position: relative;
}
.search-field:hover { 
    background: var(--surface); 
}
.search-field label { 
    display: block; 
    font-size: 11px; 
    font-weight: 600; 
    color: var(--muted); 
    text-transform: uppercase; 
    letter-spacing: 0.08em; 
    margin-bottom: 6px; 
    cursor: pointer; 
}
.search-field input, 
.search-field select {
    border: none; 
    outline: none; 
    background: transparent;
    font-family: var(--font-body); 
    font-size: 16px; 
    font-weight: 500; 
    color: var(--ink); 
    width: 100%;
}
.search-field input::placeholder {
    color: var(--muted);
    font-weight: 400;
}
.search-field select { 
    cursor: pointer; 
}

.swap-btn {
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 48px; 
    background: var(--surface); 
    border-right: 1px solid var(--border);
    cursor: pointer; 
    font-size: 18px; 
    color: var(--primary); 
    flex-shrink: 0;
    transition: all 0.2s ease; 
    border-left: none;
}
.swap-btn:hover { 
    background: var(--primary-light);
    color: var(--primary-dark);
}

.search-submit {
    background: var(--primary); 
    color: var(--white); 
    border: none;
    padding: 0 36px; 
    font-family: var(--font-head); 
    font-size: 14px;
    font-weight: 700; 
    cursor: pointer; 
    letter-spacing: 0.02em; 
    flex-shrink: 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-submit:hover { 
    background: var(--primary-dark); 
}

/* Quick Date Buttons */
.quick-dates {
    display: flex;
    gap: 8px;
    padding: 16px 0 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.quick-date-btn {
    padding: 8px 16px; 
    border-radius: 24px; 
    border: 1.5px solid var(--border-md);
    background: transparent; 
    font-family: var(--font-body); 
    font-size: 13px;
    font-weight: 500; 
    color: var(--muted); 
    cursor: pointer; 
    transition: all 0.2s ease;
}
.quick-date-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.quick-date-btn.active { 
    background: var(--primary-light); 
    border-color: var(--primary); 
    color: var(--primary); 
}

/* =============================================
   SECTIONS
   ============================================= */
.section { 
    padding: 60px 24px; 
}
.section-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
}
.section-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: baseline; 
    margin-bottom: 28px; 
}
.section-header h2 { 
    font-family: var(--font-head); 
    font-size: 28px; 
    font-weight: 700; 
    letter-spacing: -0.02em; 
}
.section-header a { 
    font-size: 14px; 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}
.section-header a:hover {
    gap: 8px;
}

/* Popular Routes Grid */
.routes-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px; 
}

.route-card {
    background: var(--white); 
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); 
    padding: 20px; 
    cursor: pointer;
    transition: all 0.25s ease; 
    position: relative; 
    overflow: hidden; 
    text-decoration: none; 
    display: block;
}
.route-card::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    height: 3px;
    background: var(--primary); 
    transform: scaleX(0); 
    transform-origin: left; 
    transition: transform 0.25s ease;
}
.route-card:hover { 
    border-color: rgba(var(--primary-rgb), 0.4); 
    transform: translateY(-4px); 
    box-shadow: var(--shadow-lg); 
}
.route-card:hover::before { 
    transform: scaleX(1); 
}

.route-top { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 14px; 
}
.city-name { 
    font-family: var(--font-head); 
    font-size: 16px; 
    font-weight: 700; 
    color: var(--ink); 
}
.route-arrow { 
    color: var(--primary); 
    font-size: 14px; 
    flex-shrink: 0; 
}

.route-meta { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.route-meta span { 
    font-size: 13px; 
    color: var(--muted); 
}
.route-price { 
    font-family: var(--font-head); 
    font-size: 18px; 
    font-weight: 700; 
    color: var(--primary); 
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.25s ease;
}
.feature-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    font-size: 32px;
    margin-bottom: 14px;
}
.feature-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--ink);
}
.feature-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Trust Strip */
.trust-strip { 
    background: var(--ink); 
    padding: 36px 24px; 
}
.trust-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}
.trust-item { 
    text-align: center; 
}
.trust-num { 
    font-family: var(--font-head); 
    font-size: 32px; 
    font-weight: 800; 
    color: var(--white); 
}
.trust-label { 
    font-size: 13px; 
    color: rgba(255,255,255,0.5); 
    margin-top: 4px;
    font-weight: 500;
}

/* =============================================
   BUS LISTING PAGE
   ============================================= */
.listing-header-bar {
    background: var(--ink); 
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.listing-header-inner { 
    max-width: 1200px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.listing-route { 
    font-family: var(--font-head); 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--white); 
    letter-spacing: -0.02em; 
}
.listing-route span { 
    color: var(--primary); 
}
.listing-meta { 
    font-size: 14px; 
    color: rgba(255,255,255,0.5); 
    margin-top: 4px; 
}
.listing-modify { 
    color: rgba(255,255,255,0.7); 
    font-size: 14px; 
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease; 
}
.listing-modify:hover { 
    color: var(--white);
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.listing-layout { 
    max-width: 1200px; 
    margin: 32px auto; 
    padding: 0 24px; 
    display: grid; 
    grid-template-columns: 280px 1fr; 
    gap: 28px; 
}

/* Filters Sidebar */
.filters-sidebar { 
    position: sticky; 
    top: 88px; 
    align-self: start; 
}
.filter-card { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 22px; 
    margin-bottom: 16px; 
}
.filter-title { 
    font-family: var(--font-head); 
    font-size: 15px; 
    font-weight: 700; 
    margin-bottom: 16px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.filter-clear { 
    font-size: 13px; 
    color: var(--primary); 
    cursor: pointer; 
    font-family: var(--font-body); 
    font-weight: 500;
    transition: color 0.2s ease;
}
.filter-clear:hover {
    color: var(--primary-dark);
}
.filter-option { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    padding: 10px 0; 
    cursor: pointer; 
}
.filter-option input[type="checkbox"] { 
    accent-color: var(--primary); 
    width: 16px; 
    height: 16px; 
    cursor: pointer; 
}
.filter-option label { 
    font-size: 14px; 
    color: var(--ink2); 
    cursor: pointer; 
    flex: 1; 
}
.filter-option .count { 
    font-size: 12px; 
    color: var(--muted); 
    background: var(--surface); 
    padding: 3px 8px; 
    border-radius: 12px; 
}

/* Bus Cards */
.bus-list-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 20px; 
}
.bus-count { 
    font-family: var(--font-head); 
    font-size: 18px; 
    font-weight: 700; 
}
.bus-count span { 
    color: var(--primary); 
}
.sort-select { 
    border: 1.5px solid var(--border-md); 
    border-radius: var(--radius-sm); 
    padding: 10px 14px; 
    font-family: var(--font-body); 
    font-size: 14px; 
    color: var(--ink2); 
    background: var(--white); 
    outline: none; 
    cursor: pointer; 
}

.bus-card {
    background: var(--white); 
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg); 
    padding: 24px; 
    margin-bottom: 16px;
    transition: all 0.25s ease;
}
.bus-card:hover { 
    border-color: rgba(var(--primary-rgb), 0.3); 
    box-shadow: var(--shadow-lg); 
}

.bus-card-top { 
    display: flex; 
    align-items: flex-start; 
    justify-content: space-between; 
    margin-bottom: 20px; 
}
.bus-operator { 
    font-family: var(--font-head); 
    font-size: 17px; 
    font-weight: 700; 
    color: var(--ink); 
}
.bus-type-badge { 
    font-size: 12px; 
    color: var(--muted); 
    background: var(--surface); 
    padding: 4px 10px; 
    border-radius: var(--radius-xs); 
    margin-top: 4px; 
    display: inline-block; 
}
.bus-rating { 
    display: flex; 
    align-items: center; 
    gap: 4px; 
    font-size: 13px; 
    font-weight: 600; 
    padding: 5px 12px; 
    border-radius: var(--radius-sm); 
}
.rating-good { 
    color: var(--success); 
    background: var(--success-bg); 
}
.rating-avg { 
    color: var(--warn); 
    background: var(--warn-bg); 
}
.rating-low { 
    color: var(--muted); 
    background: var(--surface); 
}

.bus-timing { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
    margin-bottom: 20px; 
}
.time-block { 
    min-width: 80px; 
}
.time-block.right { 
    text-align: right; 
}
.big-time { 
    font-family: var(--font-head); 
    font-size: 26px; 
    font-weight: 800; 
    letter-spacing: -0.02em; 
    color: var(--ink); 
}
.station-name { 
    font-size: 13px; 
    color: var(--muted); 
    margin-top: 4px; 
}

.duration-bar { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 6px; 
}
.dur-label { 
    font-size: 12px; 
    color: var(--muted);
    font-weight: 500;
}
.dur-track { 
    width: 100%; 
    height: 2px; 
    background: var(--border); 
    position: relative; 
}
.dur-track::before, 
.dur-track::after {
    content: ''; 
    position: absolute; 
    top: -5px;
    width: 12px; 
    height: 12px; 
    border-radius: 50%;
    border: 2px solid var(--primary); 
    background: var(--white);
}
.dur-track::before { left: 0; }
.dur-track::after { right: 0; }

.bus-card-bottom { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding-top: 20px; 
    border-top: 1px solid var(--border); 
    flex-wrap: wrap; 
    gap: 16px; 
}
.amenities { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
}
.amenity-tag { 
    font-size: 13px; 
    color: var(--muted); 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}
.seats-badge { 
    font-size: 13px; 
    font-weight: 600; 
    padding: 5px 12px; 
    border-radius: var(--radius-sm); 
}
.seats-low { 
    color: var(--error); 
    background: var(--error-bg); 
}
.seats-mid { 
    color: var(--warn); 
    background: var(--warn-bg); 
}
.seats-ok { 
    color: var(--success); 
    background: var(--success-bg); 
}

.bus-price-block { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}
.price-info { 
    text-align: right; 
}
.price-from { 
    font-size: 12px; 
    color: var(--muted); 
}
.price-amount { 
    font-family: var(--font-head); 
    font-size: 26px; 
    font-weight: 800; 
    color: var(--ink); 
    letter-spacing: -0.02em; 
}

/* =============================================
   SEAT SELECTION PAGE
   ============================================= */
.seat-page-layout { 
    max-width: 1040px; 
    margin: 36px auto; 
    padding: 0 24px; 
    display: grid; 
    grid-template-columns: 1fr 340px; 
    gap: 28px; 
}

.seat-info-card { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 24px; 
    margin-bottom: 20px; 
}
.seat-info-card h3 { 
    font-family: var(--font-head); 
    font-size: 17px; 
    font-weight: 700; 
    margin-bottom: 18px; 
}

.deck-tabs { 
    display: flex; 
    gap: 8px; 
    margin-bottom: 24px; 
}
.deck-tab { 
    padding: 10px 20px; 
    border-radius: var(--radius-sm); 
    border: 1.5px solid var(--border-md); 
    background: transparent; 
    font-family: var(--font-body); 
    font-size: 14px; 
    font-weight: 500; 
    cursor: pointer; 
    color: var(--muted); 
    transition: all 0.2s ease; 
}
.deck-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.deck-tab.active { 
    background: var(--primary); 
    color: var(--white); 
    border-color: var(--primary); 
}

.seat-legend { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 24px; 
    flex-wrap: wrap; 
}
.legend-item { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 13px; 
    color: var(--ink2); 
}
.legend-box { 
    width: 20px; 
    height: 20px; 
    border-radius: var(--radius-xs); 
}
.legend-available { 
    background: #ECFDF5; 
    border: 1.5px solid #059669; 
}
.legend-selected { 
    background: var(--primary); 
    border: 1.5px solid var(--primary-dark); 
}
.legend-booked { 
    background: #E5E7EB; 
    border: 1.5px solid #9CA3AF; 
}
.legend-ladies { 
    background: #FCE7F3; 
    border: 1.5px solid #EC4899; 
}

.bus-layout-wrapper { 
    background: var(--surface); 
    border-radius: var(--radius-md); 
    padding: 24px; 
    border: 1.5px solid var(--border); 
}
.bus-front-label { 
    text-align: center; 
    font-size: 13px; 
    color: var(--muted); 
    margin-bottom: 16px; 
    font-weight: 600; 
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.seat-row { 
    display: flex; 
    gap: 10px; 
    justify-content: center; 
    margin-bottom: 10px; 
    align-items: center; 
}
.seat-gap { 
    width: 36px; 
}

.seat {
    width: 40px; 
    height: 40px; 
    border-radius: var(--radius-sm);
    border: 1.5px solid; 
    cursor: pointer; 
    font-size: 12px;
    font-weight: 600; 
    display: flex; 
    align-items: center;
    justify-content: center; 
    transition: all 0.2s ease; 
    position: relative;
    font-family: var(--font-body);
}
.seat-available { 
    background: #ECFDF5; 
    border-color: #059669; 
    color: var(--success); 
}
.seat-available:hover { 
    background: #D1FAE5; 
    transform: scale(1.08); 
}
.seat-selected { 
    background: var(--primary); 
    border-color: var(--primary-dark); 
    color: var(--white); 
}
.seat-booked { 
    background: #E5E7EB; 
    border-color: #9CA3AF; 
    color: #9CA3AF; 
    cursor: not-allowed; 
}
.seat-ladies { 
    background: #FCE7F3; 
    border-color: #EC4899; 
    color: #EC4899; 
}
.seat-ladies.seat-available:hover { 
    background: #FBCFE8; 
}

/* Booking Summary Sidebar */
.booking-summary-card { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 24px; 
    position: sticky; 
    top: 88px; 
}
.booking-summary-card h3 { 
    font-family: var(--font-head); 
    font-size: 17px; 
    font-weight: 700; 
    margin-bottom: 20px; 
}
.summary-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 12px; 
    font-size: 14px; 
}
.summary-row .label { 
    color: var(--muted); 
}
.summary-row .value { 
    font-weight: 500; 
    color: var(--ink); 
}
.summary-divider { 
    border: none; 
    border-top: 1px solid var(--border); 
    margin: 16px 0; 
}
.summary-total .label { 
    font-weight: 600; 
    font-family: var(--font-head); 
}
.summary-total .value { 
    font-family: var(--font-head); 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--primary); 
}
.selected-seats-list { 
    min-height: 48px; 
    padding: 12px; 
    background: var(--surface); 
    border-radius: var(--radius-sm); 
    font-size: 14px; 
    color: var(--ink2); 
    margin-bottom: 16px; 
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-layout { 
    max-width: 1040px; 
    margin: 36px auto; 
    padding: 0 24px; 
    display: grid; 
    grid-template-columns: 1fr 340px; 
    gap: 28px; 
}

.checkout-card { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 28px; 
    margin-bottom: 24px; 
}
.checkout-card h3 { 
    font-family: var(--font-head); 
    font-size: 17px; 
    font-weight: 700; 
    margin-bottom: 20px; 
    padding-bottom: 16px; 
    border-bottom: 1px solid var(--border); 
}

.passenger-form { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
}

.boarding-option {
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-md); 
    padding: 16px;
    cursor: pointer; 
    transition: all 0.2s ease; 
    margin-bottom: 12px;
}
.boarding-option:hover { 
    border-color: rgba(var(--primary-rgb), 0.4); 
}
.boarding-option.selected { 
    border-color: var(--primary); 
    background: var(--primary-light); 
}
.boarding-option h4 { 
    font-size: 15px; 
    font-weight: 600; 
    margin-bottom: 4px; 
}
.boarding-option p { 
    font-size: 13px; 
    color: var(--muted); 
}

/* Payment Methods */
.payment-methods { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 14px; 
}
.payment-method {
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-md); 
    padding: 18px 16px;
    text-align: center; 
    cursor: pointer; 
    transition: all 0.2s ease;
}
.payment-method:hover { 
    border-color: rgba(var(--primary-rgb), 0.4); 
}
.payment-method.selected { 
    border-color: var(--primary); 
    background: var(--primary-light); 
}
.payment-method .pm-icon { 
    font-size: 24px; 
    margin-bottom: 6px; 
}
.payment-method .pm-label { 
    font-size: 13px; 
    font-weight: 500; 
    color: var(--ink2); 
}

/* =============================================
   CONFIRMATION PAGE
   ============================================= */
.confirmation-wrapper { 
    max-width: 720px; 
    margin: 48px auto; 
    padding: 0 24px; 
}
.confirmation-hero { 
    text-align: center; 
    padding: 40px; 
}
.confirm-icon { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    background: var(--success-bg); 
    border: 2px solid var(--success); 
    margin: 0 auto 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 36px; 
}
.confirmation-hero h2 { 
    font-family: var(--font-head); 
    font-size: 30px; 
    font-weight: 800; 
    margin-bottom: 8px; 
}
.confirmation-hero p { 
    color: var(--muted); 
    font-size: 15px; 
}
.booking-ref { 
    display: inline-block; 
    background: var(--surface); 
    border: 2px dashed var(--border-md); 
    border-radius: var(--radius-md); 
    padding: 12px 28px; 
    font-family: var(--font-head); 
    font-size: 20px; 
    font-weight: 700; 
    letter-spacing: 3px; 
    margin: 20px 0; 
    color: var(--primary); 
}

.ticket-card { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-lg); 
    overflow: hidden; 
    margin-bottom: 20px; 
}
.ticket-header { 
    background: var(--ink); 
    padding: 18px 24px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.ticket-header .logo { 
    font-size: 18px; 
}
.ticket-status { 
    background: var(--success-bg); 
    color: var(--success); 
    font-size: 13px; 
    font-weight: 600; 
    padding: 5px 14px; 
    border-radius: var(--radius-sm); 
}
.ticket-body { 
    padding: 24px; 
}
.ticket-route { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 24px; 
}
.ticket-city { 
    font-family: var(--font-head); 
    font-size: 24px; 
    font-weight: 800; 
}
.ticket-time { 
    font-size: 14px; 
    color: var(--muted); 
    margin-top: 4px; 
}
.ticket-details-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 16px; 
}
.ticket-detail-item label { 
    font-size: 11px; 
    color: var(--muted); 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    display: block; 
    margin-bottom: 4px; 
}
.ticket-detail-item span { 
    font-size: 15px; 
    font-weight: 600; 
    color: var(--ink); 
}
.ticket-footer { 
    background: var(--surface); 
    padding: 16px 24px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-top: 1px dashed var(--border-md); 
}
.ticket-footer span { 
    font-size: 14px; 
    color: var(--muted); 
}
.ticket-footer strong { 
    font-family: var(--font-head); 
    font-size: 20px; 
    color: var(--primary); 
}

/* =============================================
   MY BOOKINGS PAGE
   ============================================= */
.bookings-layout { 
    max-width: 880px; 
    margin: 36px auto; 
    padding: 0 24px; 
}
.bookings-header { 
    margin-bottom: 28px; 
}
.bookings-header h2 { 
    font-family: var(--font-head); 
    font-size: 28px; 
    font-weight: 800; 
    letter-spacing: -0.02em; 
}
.bookings-header p { 
    color: var(--muted); 
    font-size: 15px; 
    margin-top: 6px; 
}
.booking-tabs { 
    display: flex; 
    gap: 4px; 
    margin-bottom: 28px; 
    border-bottom: 2px solid var(--border); 
    padding-bottom: 0; 
}
.booking-tab { 
    padding: 12px 24px; 
    border: none; 
    background: none; 
    font-family: var(--font-body); 
    font-size: 15px; 
    font-weight: 500; 
    color: var(--muted); 
    cursor: pointer; 
    border-bottom: 3px solid transparent; 
    margin-bottom: -2px; 
    transition: all 0.2s ease; 
}
.booking-tab:hover {
    color: var(--ink);
}
.booking-tab.active { 
    color: var(--primary); 
    border-bottom-color: var(--primary); 
}

.booking-item { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 22px; 
    margin-bottom: 16px; 
    display: flex; 
    gap: 20px; 
    align-items: flex-start; 
    flex-wrap: wrap;
    transition: all 0.2s ease;
}
.booking-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--shadow-md);
}
.booking-item-left { 
    flex: 1; 
    min-width: 240px; 
}
.booking-item-route { 
    font-family: var(--font-head); 
    font-size: 17px; 
    font-weight: 700; 
    margin-bottom: 8px; 
}
.booking-item-route span { 
    color: var(--primary); 
    margin: 0 8px; 
}
.booking-item-meta { 
    font-size: 14px; 
    color: var(--muted); 
    display: flex; 
    flex-wrap: wrap; 
    gap: 16px; 
}
.booking-item-right { 
    text-align: right; 
}
.booking-status { 
    display: inline-block; 
    font-size: 13px; 
    font-weight: 600; 
    padding: 5px 14px; 
    border-radius: var(--radius-sm); 
    margin-bottom: 10px; 
}
.status-confirmed { 
    background: var(--success-bg); 
    color: var(--success); 
}
.status-cancelled { 
    background: var(--error-bg); 
    color: var(--error); 
}
.status-completed { 
    background: var(--surface); 
    color: var(--muted); 
}
.booking-amount { 
    font-family: var(--font-head); 
    font-size: 20px; 
    font-weight: 800; 
    color: var(--ink); 
}

/* =============================================
   AUTH PAGES
   ============================================= */
.auth-wrapper { 
    min-height: calc(100vh - 64px); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 48px 24px; 
    background: var(--surface); 
}
.auth-card { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 40px; 
    width: 100%; 
    max-width: 440px; 
    box-shadow: var(--shadow-xl); 
}
.auth-logo { 
    text-align: center; 
    margin-bottom: 28px; 
}
.auth-logo .logo { 
    font-size: 28px; 
    color: var(--ink);
}
.auth-card h2 { 
    font-family: var(--font-head); 
    font-size: 24px; 
    font-weight: 800; 
    margin-bottom: 6px; 
    text-align: center; 
}
.auth-card .subtitle { 
    font-size: 15px; 
    color: var(--muted); 
    text-align: center; 
    margin-bottom: 32px; 
}
.auth-divider { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    margin: 20px 0; 
}
.auth-divider::before, 
.auth-divider::after { 
    content: ''; 
    flex: 1; 
    height: 1px; 
    background: var(--border); 
}
.auth-divider span { 
    font-size: 13px; 
    color: var(--muted); 
}
.auth-footer { 
    text-align: center; 
    margin-top: 24px; 
    font-size: 15px; 
    color: var(--muted); 
}
.auth-footer a { 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 500; 
}
.auth-footer a:hover {
    text-decoration: underline;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-layout { 
    max-width: 880px; 
    margin: 36px auto; 
    padding: 0 24px; 
    display: grid; 
    grid-template-columns: 260px 1fr; 
    gap: 28px; 
}
.profile-sidebar { 
    background: var(--white); 
    border: 1.5px solid var(--border); 
    border-radius: var(--radius-lg); 
    padding: 24px; 
    align-self: start; 
    position: sticky; 
    top: 88px; 
}
.profile-avatar { 
    width: 72px; 
    height: 72px; 
    border-radius: 50%; 
    background: var(--primary); 
    color: var(--white); 
    font-size: 24px; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 14px; 
    font-family: var(--font-head); 
}
.profile-name { 
    font-family: var(--font-head); 
    font-size: 17px; 
    font-weight: 700; 
    text-align: center; 
}
.profile-email { 
    font-size: 14px; 
    color: var(--muted); 
    text-align: center; 
    margin-bottom: 20px; 
}
.profile-nav { 
    border-top: 1px solid var(--border); 
    padding-top: 16px; 
}
.profile-nav a { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    padding: 11px 12px; 
    border-radius: var(--radius-sm); 
    font-size: 14px; 
    color: var(--ink2); 
    text-decoration: none; 
    transition: all 0.2s ease; 
    margin-bottom: 4px; 
}
.profile-nav a:hover { 
    background: var(--surface); 
    color: var(--primary); 
}
.profile-nav a.active { 
    background: var(--primary-light); 
    color: var(--primary); 
    font-weight: 500; 
}

/* =============================================
   FOOTER
   ============================================= */
.footer { 
    background: var(--ink); 
    padding: 56px 24px 0; 
}
.footer-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1fr; 
    gap: 48px; 
    padding-bottom: 40px; 
}
.footer-brand .logo { 
    font-size: 22px; 
    display: block; 
    margin-bottom: 14px; 
}
.footer-brand p { 
    font-size: 14px; 
    color: rgba(255,255,255,0.4); 
    line-height: 1.7; 
}
.footer-col h4 { 
    font-family: var(--font-head); 
    font-size: 13px; 
    font-weight: 700; 
    color: var(--white); 
    margin-bottom: 18px; 
    letter-spacing: 0.05em; 
    text-transform: uppercase; 
}
.footer-col a { 
    display: block; 
    font-size: 14px; 
    color: rgba(255,255,255,0.45); 
    text-decoration: none; 
    margin-bottom: 10px; 
    transition: color 0.2s ease; 
}
.footer-col a:hover { 
    color: var(--white); 
}
.footer-bottom { 
    max-width: 1200px; 
    margin: 0 auto; 
    border-top: 1px solid rgba(255,255,255,0.08); 
    padding: 20px 0; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 16px; 
}
.footer-bottom p { 
    font-size: 13px; 
    color: rgba(255,255,255,0.3); 
}
.footer-trust { 
    display: flex; 
    gap: 24px; 
}
.footer-trust span { 
    font-size: 13px; 
    color: rgba(255,255,255,0.4); 
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb { 
    background: var(--ink); 
    padding: 12px 24px; 
    border-bottom: 1px solid rgba(255,255,255,0.06); 
}
.breadcrumb-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 13px; 
}
.breadcrumb a { 
    color: rgba(255,255,255,0.45); 
    text-decoration: none;
    transition: color 0.2s ease;
}
.breadcrumb a:hover { 
    color: var(--white); 
}
.breadcrumb .sep { 
    color: rgba(255,255,255,0.25); 
}
.breadcrumb .current { 
    color: rgba(255,255,255,0.75); 
}

/* =============================================
   EMPTY STATES
   ============================================= */
.empty-state { 
    text-align: center; 
    padding: 80px 24px; 
}
.empty-state .icon { 
    font-size: 56px; 
    margin-bottom: 20px; 
}
.empty-state h3 { 
    font-family: var(--font-head); 
    font-size: 22px; 
    font-weight: 700; 
    margin-bottom: 10px; 
}
.empty-state p { 
    font-size: 15px; 
    color: var(--muted); 
    margin-bottom: 24px; 
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 44px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .listing-layout {
        grid-template-columns: 240px 1fr;
    }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 900px) {
    .listing-layout { 
        grid-template-columns: 1fr; 
    }
    
    .filters-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .filter-card {
        margin-bottom: 0;
    }
}

@media (max-width: 820px) {
    .seat-page-layout, 
    .checkout-layout { 
        grid-template-columns: 1fr; 
    }
    
    .booking-summary-card {
        position: static;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .nav-container { gap: 16px; }
    
    /* Hero */
    .hero { padding: 32px 24px 0; }
    .hero h1 { font-size: 36px; }
    .hero > .hero-inner > p { font-size: 15px; margin-bottom: 28px; }
    
    /* Search Form */
    .search-card { padding: 20px 20px 16px; }
    .search-form { 
        flex-direction: column; 
        border: none; 
        gap: 12px; 
    }
    .search-field { 
        border: 1.5px solid var(--border-md); 
        border-radius: var(--radius-md); 
        border-right: 1.5px solid var(--border-md) !important; 
    }
    .swap-btn { display: none; }
    .search-submit { 
        border-radius: var(--radius-md); 
        padding: 16px; 
        width: 100%; 
    }
    
    /* Routes Grid */
    .routes-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Filters */
    .filters-sidebar {
        grid-template-columns: 1fr;
    }
    
    /* Bus Timing */
    .bus-timing { gap: 12px; }
    .big-time { font-size: 20px; }
    .bus-price-block { 
        width: 100%; 
        justify-content: space-between; 
    }
    
    /* Ticket Details */
    .ticket-details-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    
    /* Profile */
    .profile-layout { 
        grid-template-columns: 1fr; 
    }
    .profile-sidebar { 
        position: static; 
    }
    
    /* Footer */
    .footer-inner { 
        grid-template-columns: 1fr 1fr; 
    }
    
    /* Trust Strip */
    .trust-inner {
        justify-content: center;
    }
    .trust-num {
        font-size: 26px;
    }
    
    /* Section */
    .section { padding: 40px 24px; }
    .section-header { flex-direction: column; gap: 8px; align-items: flex-start; }
    .section-header h2 { font-size: 24px; }
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;   /* adjust as needed */
    width: auto;
    object-fit: contain;
}

/* Small Mobile */
@media (max-width: 480px) {
    body { font-size: 14px; }
    
    .nav-container { padding: 0 16px; height: 60px; }
    .logo { font-size: 20px; }
    
    .hero { padding: 24px 16px 0; }
    .hero h1 { font-size: 28px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }
    
    .search-card { padding: 16px 16px 14px; }
    .tab-btn { padding: 8px 16px; font-size: 13px; }
    .search-field { padding: 14px 16px; }
    
    .routes-grid { grid-template-columns: 1fr; }
    
    .section { padding: 32px 16px; }
    
    .trust-item { flex: 1; min-width: 80px; }
    .trust-num { font-size: 22px; }
    .trust-label { font-size: 11px; }
    
    .footer { padding: 40px 16px 0; }
    .footer-inner { 
        grid-template-columns: 1fr; 
        gap: 32px;
    }
    
    .booking-item { padding: 18px; }
    
    .payment-methods { grid-template-columns: 1fr 1fr; }
    
    .passenger-form { grid-template-columns: 1fr; }
    
    .auth-card { padding: 28px 20px; }
}

/* Print Styles */
@media print {
    .navbar, .footer, .btn-primary, .btn-ghost, .btn-outline {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .ticket-card {
        border: 1px solid #000;
        box-shadow: none;
    }
}
.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    max-height: 240px;
    overflow-y: auto;
    z-index: 99999;
    display: none;
    border: 1px solid rgba(0,0,0,0.08);
}

.autocomplete-item {
    padding: 12px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.15s ease;
}

.autocomplete-item:hover {
    background: #f8f9fa;
}
