/* Header & Navigation Styles */
.site-navbar {
    position: relative;
    padding: 12px 0;
    z-index: 120;
}

.site-navbar-shell {
    position: relative;
    width: min(1875px, calc(100% - 24px));
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    overflow: visible;
}

.site-navbar-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 0;
    pointer-events: none;
}

.glass-header {
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.16), transparent 34%),
        linear-gradient(135deg, #c40000 0%, #e10600 50%, #8f0000 100%);
}

.glass-header-sports {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), transparent 24%),
        linear-gradient(135deg, rgba(251, 191, 36, 0.92), rgba(245, 158, 11, 0.92));
}

.glass-header-economy {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 24%),
        linear-gradient(135deg, rgba(8, 145, 178, 0.96), rgba(22, 163, 74, 0.96));
}

.site-navbar-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 78px;
    padding: 10px 18px;
    overflow: visible;
}

.site-navbar-brand,
.site-navbar-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-navbar-brand {
    min-width: 210px;
}

.site-navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    text-decoration: none;
}

.site-navbar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.74);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.glass-header .site-navbar-badge,
.glass-header-sports .site-navbar-badge,
.glass-header-economy .site-navbar-badge {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
}

.site-navbar-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.site-navbar-logo-image--invert {
    filter: brightness(0) invert(1);
}

.site-navbar-logo-text {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.nav-wrapper {
    display: none;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.nav-item-shell {
    position: relative;
    flex: 0 0 auto;
    z-index: 3;
}

.nav-dropdown-group {
    padding-bottom: 18px;
    margin-bottom: -18px;
}

.nav-link-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.nav-link-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.72;
}

.nav-link-item:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.82);
    transform: translateY(-1px);
}

.nav-link-item.is-active {
    color: #0f172a;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.glass-header .nav-wrapper,
.glass-header-sports .nav-wrapper,
.glass-header-economy .nav-wrapper {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.glass-header .nav-link-item,
.glass-header-sports .nav-link-item,
.glass-header-economy .nav-link-item {
    color: rgba(255, 255, 255, 0.86);
}

.glass-header .nav-link-item:hover,
.glass-header .nav-link-item.is-active,
.glass-header-sports .nav-link-item:hover,
.glass-header-economy .nav-link-item:hover,
.glass-header-sports .nav-link-item.is-active,
.glass-header-economy .nav-link-item.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.nav-dropdown-group:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    z-index: 500;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 18px;
}

.dropdown-box {
    min-width: 220px;
    padding: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
    position: relative;
    z-index: 501;
}

.dropdown-box a {
    display: block;
    padding: 11px 14px;
    border-radius: 6px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dropdown-box a:hover,
.dropdown-box a.active {
    color: #0f172a;
    background: #f8fafc;
    transform: translateX(3px);
}

.glass-header .dropdown-box,
.glass-header-sports .dropdown-box,
.glass-header-economy .dropdown-box {
    background: rgba(15, 23, 42);
}

.glass-header .dropdown-box a,
.glass-header-sports .dropdown-box a,
.glass-header-economy .dropdown-box a {
    color: rgba(255, 255, 255, 0.8);
}

.glass-header .dropdown-box a:hover,
.glass-header .dropdown-box a.active,
.glass-header-sports .dropdown-box a:hover,
.glass-header-sports .dropdown-box a.active,
.glass-header-economy .dropdown-box a:hover,
.glass-header-economy .dropdown-box a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.site-navbar-actions {
    gap: 10px;
}

.site-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.site-action-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.78);
}

.site-action-btn--menu span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.glass-header .site-action-btn,
.glass-header-sports .site-action-btn,
.glass-header-economy .site-action-btn {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.glass-header .site-action-btn:hover,
.glass-header-sports .site-action-btn:hover,
.glass-header-economy .site-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Search Overlay */
#search-overlay {
    z-index: 9999;
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 11vh;
}

#search-overlay:not(.hidden) {
    display: flex;
}

#search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.28s ease;
}

#search-panel {
    position: relative;
    width: min(680px, calc(100% - 24px));
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.28s ease, transform 0.28s ease;
    overflow: hidden;
}

.search-anim-active #search-backdrop {
    opacity: 1;
}

.search-anim-active #search-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 8px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.search-input-wrap input {
    width: 100%;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-size: 22px;
    font-weight: 600;
    outline: none;
}

.search-input-wrap input::placeholder {
    color: #94a3b8;
}

.search-icon-wrap {
    padding: 0 20px;
    color: #475569;
}

.search-esc {
    margin-right: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #475569;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    cursor: pointer;
}

.search-suggestions {
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.96));
}

.search-suggestions h3 {
    margin: 0 0 16px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.search-tag span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
}

.search-tag.tag-red span { background: #ef4444; }
.search-tag.tag-green span { background: #10b981; }
.search-tag.tag-yellow span { background: #f59e0b; }
.search-tag.tag-blue span { background: #3b82f6; }

/* Drawer Menu Styles */
#drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    display: block;
}

#drawer-overlay.hidden {
    display: none !important;
}

#drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

#drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
    max-width: calc(100vw - 16px);
    height: 100%;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto;
}

.drawer-anim-active {
    pointer-events: auto;
}

.drawer-anim-active #drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.drawer-anim-active #drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 72px 20px 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.drawer-title {
    display: block;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.drawer-subtitle {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
}

.drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    cursor: pointer;
    opacity: 0;
    transform: translateX(8px) scale(0.96);
    transition: transform 0.24s ease, background-color 0.2s ease, opacity 0.2s ease;
    z-index: 2;
}

.drawer-close:hover {
    transform: translateX(0) scale(1.03);
    background: #e2e8f0;
}

.drawer-close:active {
    transform: translateX(0) scale(0.96);
}

.drawer-anim-active .drawer-close {
    opacity: 1;
    transform: translateX(0) scale(1);
}

#drawer-overlay:not(.drawer-anim-active) .drawer-close {
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .drawer-close,
    .drawer-close:hover,
    .drawer-close:active {
        transition: none;
        transform: none;
    }
}

.drawer-body {
    padding: 12px;
    overflow-y: auto;
}

.drawer-section-title {
    padding: 14px 12px 8px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 4px 0;
    padding: 14px 14px;
    border-radius: 6px;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.drawer-link:hover,
.drawer-link.is-active {
    color: #0f172a;
    background: #eef2ff;
    transform: translateX(3px);
}

.drawer-home {
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
}

.drawer-home svg {
    color: #93c5fd;
}

.drawer-home:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #0f172a);
}

.drawer-link--service {
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #e2e8f0;
}

/* Economy sub navigation */
.economy-subnav {
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 6px;
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.18), transparent 28%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.economy-subnav__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.economy-subnav__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #10b981;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.economy-subnav__title {
    margin: 0;
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.economy-subnav__text {
    max-width: 320px;
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.economy-subnav__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.economy-subnav__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 72px;
    padding: 16px 18px;
    border-radius: 6px;
    color: #0f172a;
    text-decoration: none;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.economy-subnav__item:hover,
.economy-subnav__item.is-active {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.economy-subnav__label {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.economy-subnav__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    font-size: 18px;
    line-height: 1;
}

.economy-subnav__item--emerald.is-active,
.economy-subnav__item--emerald:hover { background: linear-gradient(135deg, #ecfdf5, #d1fae5); }
.economy-subnav__item--amber.is-active,
.economy-subnav__item--amber:hover { background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.economy-subnav__item--violet.is-active,
.economy-subnav__item--violet:hover { background: linear-gradient(135deg, #f5f3ff, #ede9fe); }
.economy-subnav__item--neutral.is-active,
.economy-subnav__item--neutral:hover { background: linear-gradient(135deg, #f8fafc, #e2e8f0); }

@media (min-width: 768px) {
    .nav-wrapper {
        display: flex;
    }
}
