﻿/* ==========================================================================
   Starbounds Modern Design System 2026
   Floating Shrinking Oval Pill Navbar, Full-Width Responsive, Clean Aesthetics
   ========================================================================== */

:root {
    --sb-primary: #1e60d5;
    --sb-primary-hover: #164cb0;
    --sb-primary-light: #eff6ff;
    --sb-navy-dark: #0f172a;
    --sb-navy-card: #1e293b;
    --sb-navy-border: #334155;
    --sb-text-main: #1e293b;
    --sb-text-muted: #64748b;
    --sb-text-light: #94a3b8;
    --sb-border-color: #e2e8f0;
    --sb-bg-light: #f8fafc;
    --sb-bg-card: #ffffff;
    --sb-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --sb-shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --sb-shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
    --sb-shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.16);
    --sb-radius-sm: 8px;
    --sb-radius-md: 12px;
    --sb-radius-lg: 16px;
    --sb-radius-pill: 9999px;
    --sb-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --sb-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--sb-font-body);
    color: var(--sb-text-main);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--sb-font-main);
    font-weight: 700;
    color: var(--sb-navy-dark);
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Full Width Expansive Container */
.container-fluid.px-lg-5 {
    max-width: 1560px;
    margin: 0 auto;
}

/* ==========================================================================
   FLOATING SHRINKING OVAL PILL NAVBAR (2026 LUXURY AESTHETICS)
   ========================================================================== */
.sb-header-wrapper {
    position: fixed;
    top: 16px;
    left: 0;
    width: 100%;
    z-index: 1200;
    pointer-events: none;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sb-navbar-oval {
    pointer-events: auto;
    width: 100%;
    max-width: 1360px;
    height: 68px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(226, 232, 240, 0.95);
    border-radius: 9999px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08), 0 2px 6px rgba(15, 23, 42, 0.04);
    padding: 6px 14px 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
}

/* Left Section: Menu Toggle + Nav Links */
.sb-nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.sb-hamburger-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.sb-hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.sb-hamburger-btn:hover {
    background: #f1f5f9;
}

.sb-nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sb-nav-item {
    position: relative;
}

.sb-nav-link {
    font-family: var(--sb-font-main);
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sb-nav-link:hover, .sb-nav-link.active {
    color: var(--sb-primary);
}

.dropdown-arrow {
    font-size: 9px;
    transition: transform 0.2s ease;
}

.sb-nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Center Logo */
.sb-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.sb-logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sb-logo-img {
    height: 42px;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.35s ease;
}

/* Right Section: Dropdowns, Login & Sign Up Capsule */
.sb-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.sb-btn-outline-pill {
    background: transparent;
    border: 1px solid var(--sb-border-color);
    color: #334155;
    font-family: var(--sb-font-main);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: var(--sb-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sb-btn-outline-pill:hover {
    border-color: var(--sb-primary);
    color: var(--sb-primary);
    background: var(--sb-primary-light);
}

.sb-btn-login {
    font-family: var(--sb-font-main);
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    padding: 8px 12px;
}

.sb-btn-login:hover {
    color: var(--sb-primary);
}

.sb-btn-signup {
    background: var(--sb-primary);
    color: #ffffff !important;
    font-family: var(--sb-font-main);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: var(--sb-radius-pill);
    box-shadow: 0 4px 14px rgba(30, 96, 213, 0.3);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sb-btn-signup:hover {
    background: var(--sb-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(30, 96, 213, 0.4);
}

/* ==========================================================================
   SCROLLED / SHRUNK STATE
   When page is scrolled, navbar shrinks from sides into a compact centered oval badge!
   ========================================================================== */
.sb-navbar-oval.sb-shrunk {
    width: 160px;
    max-width: 160px;
    height: 56px;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(15, 23, 42, 0.08);
    border-color: rgba(203, 213, 225, 0.95);
    cursor: pointer;
}

.sb-navbar-oval.sb-shrunk .sb-nav-left,
.sb-navbar-oval.sb-shrunk .sb-nav-right {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    max-width: 0;
    width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transform: scale(0.85);
    position: absolute;
}

.sb-navbar-oval.sb-shrunk .sb-nav-center {
    width: 100%;
    justify-content: center;
}

.sb-navbar-oval.sb-shrunk .sb-logo-img {
    height: 34px;
    max-width: 130px;
}

/* When hovering over the shrunk badge, expand smoothly! */
.sb-navbar-oval.sb-shrunk:hover {
    width: 100%;
    max-width: 1360px;
    height: 68px;
    padding: 6px 14px 6px 20px;
    cursor: default;
}

.sb-navbar-oval.sb-shrunk:hover .sb-nav-left,
.sb-navbar-oval.sb-shrunk:hover .sb-nav-right {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    max-width: 600px;
    width: auto;
    position: static;
    overflow: visible;
    transform: scale(1);
}

.sb-navbar-oval.sb-shrunk:hover .sb-nav-center {
    width: auto;
}

.sb-navbar-oval.sb-shrunk:hover .sb-logo-img {
    height: 42px;
    max-width: 180px;
}

/* Dropdown styling */
.sb-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    box-shadow: var(--sb-shadow-lg);
    padding: 8px 0;
    margin-top: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.sb-nav-item:hover > .sb-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sb-dropdown-item {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.15s ease;
    text-decoration: none;
}

.sb-dropdown-item:hover {
    background: var(--sb-primary-light);
    color: var(--sb-primary);
    padding-left: 22px;
}

/* ==========================================================================
   HERO SECTION (FULL WIDTH)
   ========================================================================== */
.sb-hero-section {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    padding: 64px 0 64px;
    position: relative;
}

.sb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #0369a1;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: var(--sb-radius-pill);
    margin-bottom: 20px;
    border: 1px solid #bae6fd;
}

.sb-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--sb-navy-dark);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.sb-hero-title .sb-highlight {
    color: var(--sb-primary);
    display: block;
}

.sb-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--sb-text-muted);
    margin-bottom: 32px;
    max-width: 620px;
}

.sb-hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 36px;
}

.sb-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sb-hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sb-primary);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.sb-hero-stat-content h4 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: var(--sb-navy-dark);
    line-height: 1.1;
}

.sb-hero-stat-content p {
    font-size: 13px;
    color: var(--sb-text-muted);
    margin: 0;
    font-weight: 500;
}

/* Right Hero Visual Card */
.sb-hero-visual-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.sb-floating-rec-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-lg);
    padding: 24px;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.12);
}

.sb-floating-rec-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--sb-navy-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.sb-rec-job-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.sb-rec-job-item:last-of-type {
    border-bottom: none;
}

.sb-rec-job-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sb-icon-blue { background: #eff6ff; color: #1e60d5; }
.sb-icon-green { background: #ecfdf5; color: #059669; }
.sb-icon-purple { background: #f5f3ff; color: #7c3aed; }

.sb-rec-job-details {
    flex-grow: 1;
    min-width: 0;
}

.sb-rec-job-details h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
    color: var(--sb-navy-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sb-rec-job-details p {
    font-size: 12px;
    color: var(--sb-text-muted);
    margin: 0;
}

.sb-rec-job-time {
    font-size: 11px;
    font-weight: 600;
    color: var(--sb-text-light);
    white-space: nowrap;
}

.sb-rec-view-all {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--sb-primary);
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--sb-border-color);
}

.sb-rec-view-all:hover {
    color: var(--sb-primary-hover);
}

/* ==========================================================================
   FLOATING DARK NAVY SEARCH CARD
   ========================================================================== */
.sb-search-card-wrapper {
    margin-top: 36px;
    position: relative;
    z-index: 10;
}

.sb-search-card {
    background: #0f172a;
    border-radius: 20px;
    padding: 28px 36px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sb-search-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.sb-search-tab {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-family: var(--sb-font-main);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--sb-radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sb-search-tab.active {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.sb-search-form-row {
    display: grid;
    grid-template-columns: 2.2fr 1.6fr 1.6fr 1.2fr;
    gap: 14px;
    align-items: center;
}

.sb-search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.sb-search-input-group i {
    position: absolute;
    left: 16px;
    color: #64748b;
    font-size: 15px;
    pointer-events: none;
}

.sb-search-input-group input,
.sb-search-input-group select {
    width: 100%;
    height: 52px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 0 16px 0 46px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--sb-font-body);
    outline: none;
    transition: all 0.2s ease;
}

.sb-search-input-group select option {
    background: #1e293b;
    color: #ffffff;
}

.sb-search-input-group input:focus,
.sb-search-input-group select:focus {
    border-color: #3b82f6;
    background: #1e293b;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.sb-btn-search-submit {
    height: 52px;
    background: #1e60d5;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: var(--sb-font-main);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(30, 96, 213, 0.4);
}

.sb-btn-search-submit:hover {
    background: #164cb0;
    transform: translateY(-1px);
}

.sb-popular-searches {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sb-popular-label {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    margin-right: 4px;
}

.sb-popular-pill {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--sb-radius-pill);
    cursor: pointer;
    transition: all 0.15s ease;
}

.sb-popular-pill:hover {
    background: rgba(30, 96, 213, 0.35);
    color: #ffffff;
}

.sb-popular-view-all {
    font-size: 12px;
    font-weight: 700;
    color: #60a5fa;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
.sb-section {
    padding: 72px 0;
}

.sb-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
}

.sb-section-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--sb-primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sb-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--sb-navy-dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.sb-section-desc {
    font-size: 15px;
    color: var(--sb-text-muted);
    margin: 0;
}

.sb-view-all-link {
    font-family: var(--sb-font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--sb-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.sb-view-all-link:hover {
    color: var(--sb-primary-hover);
    padding-left: 4px;
}

/* ==========================================================================
   CATEGORY GRID
   ========================================================================== */
.sb-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.sb-category-card {
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.sb-category-card:hover {
    transform: translateY(-6px);
    border-color: var(--sb-primary);
    box-shadow: 0 16px 32px -8px rgba(30, 96, 213, 0.15);
}

.sb-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sb-primary-light);
    color: var(--sb-primary);
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: all 0.2s ease;
}

.sb-category-card:hover .sb-category-icon {
    background: var(--sb-primary);
    color: #ffffff;
}

.sb-category-name {
    font-family: var(--sb-font-main);
    font-size: 15px;
    font-weight: 700;
    color: var(--sb-navy-dark);
    margin-bottom: 4px;
}

.sb-category-count {
    font-size: 12px;
    color: var(--sb-text-muted);
    font-weight: 500;
}

/* ==========================================================================
   JOBS LIST & TABS
   ========================================================================== */
.sb-jobs-filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--sb-border-color);
    padding-bottom: 12px;
}

.sb-job-tab-btn {
    background: transparent;
    border: none;
    font-family: var(--sb-font-main);
    font-size: 14px;
    font-weight: 700;
    color: var(--sb-text-muted);
    padding: 8px 16px;
    border-radius: var(--sb-radius-pill);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sb-job-tab-btn.active {
    background: var(--sb-primary);
    color: #ffffff;
}

.sb-job-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sb-job-card {
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    padding: 22px 24px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: all 0.25s ease;
}

.sb-job-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 28px -6px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.sb-job-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sb-job-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sb-company-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--sb-font-main);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.sb-job-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--sb-navy-dark);
    margin: 0 0 3px;
    cursor: pointer;
}

.sb-job-title:hover {
    color: var(--sb-primary);
}

.sb-job-company {
    font-size: 13px;
    color: var(--sb-text-muted);
    font-weight: 600;
}

.sb-bookmark-btn {
    background: #f8fafc;
    border: 1px solid var(--sb-border-color);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sb-bookmark-btn:hover, .sb-bookmark-btn.active {
    background: #eff6ff;
    border-color: #93c5fd;
    color: var(--sb-primary);
}

.sb-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.sb-job-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sb-badge-location { background: #f1f5f9; color: #475569; }
.sb-badge-type { background: #ecfdf5; color: #065f46; }
.sb-badge-category { background: #eff6ff; color: #1e40af; }
.sb-badge-salary { background: #fef3c7; color: #92400e; }

.sb-job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.sb-job-time {
    font-size: 12px;
    color: var(--sb-text-muted);
    font-weight: 500;
}

.sb-btn-outline-sm {
    border: 1px solid var(--sb-border-color);
    background: #ffffff;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
}

.sb-btn-outline-sm:hover {
    border-color: var(--sb-primary);
    color: var(--sb-primary);
}

.sb-btn-apply {
    background: var(--sb-primary);
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sb-btn-apply:hover {
    background: var(--sb-primary-hover);
}

/* Empty State */
.sb-empty-state {
    background: #ffffff;
    border: 1px dashed var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    padding: 48px 24px;
    text-align: center;
}

.sb-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

/* ==========================================================================
   SIDEBAR WIDGETS
   ========================================================================== */
.sb-sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    padding: 24px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    margin-bottom: 24px;
}

.sb-alert-widget {
    background: linear-gradient(135deg, #1e60d5 0%, #0f3ba1 100%);
    color: #ffffff;
    border: none;
}

.sb-alert-widget h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 6px;
}

.sb-alert-widget p {
    color: #bfdbfe;
    font-size: 13px;
    margin-bottom: 18px;
}

.sb-alert-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.sb-btn-block-primary {
    width: 100%;
    background: #ffffff;
    color: #1e60d5;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sb-btn-block-primary:hover {
    background: #eff6ff;
}

.sb-widget-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--sb-navy-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-widget-title i {
    color: #f59e0b;
}

.sb-trend-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sb-trend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.sb-trend-item:hover {
    background: #eff6ff;
}

.sb-trend-name {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sb-trend-meta {
    font-size: 12px;
    font-weight: 700;
}

.sb-trend-up { color: #059669; }

/* ==========================================================================
   WHY CHOOSE STARBOUNDS BANNER (FULL WIDTH)
   ========================================================================== */
.sb-why-banner {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sb-why-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #60a5fa;
    margin-bottom: 8px;
}

.sb-why-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.25;
}

.sb-why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.sb-why-feature-item {
    display: flex;
    flex-direction: column;
}

.sb-why-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.sb-why-feature-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.sb-why-feature-item p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.sb-why-visual-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sb-profile-strength-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    width: 220px;
}

.sb-profile-strength-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.sb-radial-progress {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-radial-bg {
    fill: none;
    stroke: #334155;
    stroke-width: 6;
}

.sb-radial-fill {
    fill: none;
    stroke: #10b981;
    stroke-width: 6;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.sb-radial-text {
    position: absolute;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.sb-profile-strength-badge {
    font-size: 11px;
    font-weight: 600;
    color: #6ee7b7;
    margin-top: 12px;
}

/* ==========================================================================
   TOP COMPANIES HIRING & REAL LOGOS
   ========================================================================== */
.sb-companies-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.sb-company-card {
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    min-height: 125px;
    text-align: center;
}

.sb-company-card:hover {
    transform: translateY(-4px);
    border-color: var(--sb-primary);
    box-shadow: 0 12px 24px -4px rgba(30, 96, 213, 0.12);
}

.sb-company-logo-wrap {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    width: 100%;
}

.sb-company-real-logo {
    max-height: 46px;
    max-width: 120px;
    object-fit: contain;
}

.sb-company-logo-svg {
    max-height: 100%;
    max-width: 130px;
}

.sb-company-name-label {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.sb-company-fallback-badge {
    font-size: 14px;
    font-weight: 800;
    color: #1e60d5;
    background: #eff6ff;
    padding: 8px 14px;
    border-radius: 8px;
}

.sb-company-jobs-badge {
    font-size: 11px;
    font-weight: 700;
    color: #059669;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Stat Counter Strip */
.sb-counter-strip {
    margin-top: 48px;
    background: #f8fafc;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    padding: 24px 32px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sb-counter-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sb-counter-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    color: var(--sb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sb-counter-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--sb-navy-dark);
    margin: 0;
    line-height: 1.1;
}

.sb-counter-item p {
    font-size: 12px;
    color: var(--sb-text-muted);
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
   TESTIMONIALS (CLEAN MONOGRAM AVATARS)
   ========================================================================== */
.sb-testimonials-section {
    position: relative;
    overflow: hidden;
}

.sb-quote-watermark {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 160px;
    font-family: Georgia, serif;
    color: rgba(30, 96, 213, 0.04);
    pointer-events: none;
}

.sb-quote-watermark-right {
    position: absolute;
    bottom: -60px;
    right: 20px;
    font-size: 160px;
    font-family: Georgia, serif;
    color: rgba(30, 96, 213, 0.04);
    pointer-events: none;
}

.sb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sb-testimonial-card {
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    padding: 28px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.sb-testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.sb-user-initials-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    font-family: var(--sb-font-main);
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sb-user-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--sb-navy-dark);
    margin: 0 0 2px;
}

.sb-user-info p {
    font-size: 12px;
    color: var(--sb-text-muted);
    margin: 0 0 4px;
}

.sb-star-rating {
    color: #f59e0b;
    font-size: 12px;
}

.sb-testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: #334155;
    margin: 0;
    font-style: italic;
}

/* ==========================================================================
   NEWSLETTER SUBSCRIPTION BAR
   ========================================================================== */
.sb-newsletter-bar {
    background: #0f172a;
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.15);
}

.sb-newsletter-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sb-newsletter-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.sb-newsletter-left h4 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px;
}

.sb-newsletter-left p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.sb-newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 380px;
}

.sb-newsletter-input {
    flex-grow: 1;
    height: 48px;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 0 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.sb-newsletter-input:focus {
    border-color: #3b82f6;
}

.sb-btn-subscribe {
    height: 48px;
    background: #1e60d5;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: var(--sb-font-main);
    font-size: 14px;
    font-weight: 700;
    padding: 0 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.sb-btn-subscribe:hover {
    background: #164cb0;
}

/* ==========================================================================
   FOOTER (5-COLUMN DARK NAVY)
   ========================================================================== */
.sb-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 64px 0 24px;
    border-top: 1px solid #1e293b;
}

.sb-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.sb-footer-logo-box {
    margin-bottom: 16px;
}

.sb-footer-logo-img {
    height: 48px;
    max-width: 220px;
    object-fit: contain;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
}

.sb-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 20px;
    max-width: 320px;
}

.sb-footer-socials {
    display: flex;
    gap: 10px;
}

.sb-footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1e293b;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
}

.sb-footer-social-btn:hover {
    background: var(--sb-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.sb-footer-col h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.sb-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sb-footer-links a {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s ease;
}

.sb-footer-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.sb-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    font-size: 13px;
    color: #64748b;
}

/* ==========================================================================
   DEDICATED JOBS PAGE (/jobs & Jobs.aspx)
   ========================================================================== */
.sb-jobs-page-wrapper {
    background: #f8fafc;
    min-height: 700px;
}

.sb-jobs-search-strip {
    background: #0f172a;
    padding: 36px 0 28px;
    border-bottom: 1px solid #1e293b;
}

.sb-jobs-strip-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.sb-jobs-strip-subtitle {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.sb-jobs-filter-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 18px;
}

.sb-jobs-sidebar {
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.sb-sidebar-filter-group {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.sb-filter-group-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.sb-filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sb-custom-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
}

.sb-custom-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1e60d5;
    cursor: pointer;
}

.sb-location-pill {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.sb-location-pill:hover {
    background: #eff6ff;
    color: #1e60d5;
}

/* Scroll to top */
.sb-scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sb-primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(30, 96, 213, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

.sb-scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sb-scroll-top-btn:hover {
    background: var(--sb-primary-hover);
    transform: translateY(-2px);
}

/* Modals */
.sb-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 2000;
}

.sb-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.sb-modal-dialog {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    width: 90%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
    transform: scale(0.95);
    transition: all 0.25s ease;
}

.sb-modal-backdrop.show .sb-modal-dialog {
    transform: scale(1);
}

.sb-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 18px;
    color: #64748b;
    cursor: pointer;
}

/* ==========================================================================
   MODERN AUTH PAGES & FORMS (LOGIN / SIGNUP PANELS)
   ========================================================================== */
.sb-auth-wrapper {
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: #f8fafc;
}

.sb-auth-card {
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.sb-auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.sb-auth-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--sb-navy-dark);
    margin-bottom: 6px;
}

.sb-auth-header p {
    font-size: 14px;
    color: var(--sb-text-muted);
    margin: 0;
}

.sb-auth-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}

.sb-auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sb-auth-tab.active {
    background: #ffffff;
    color: var(--sb-primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.sb-form-group {
    margin-bottom: 20px;
}

.sb-form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.sb-form-input {
    width: 100%;
    height: 48px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    transition: all 0.2s ease;
}

.sb-form-input:focus {
    border-color: var(--sb-primary);
    box-shadow: 0 0 0 3px rgba(30, 96, 213, 0.15);
}

.sb-btn-auth-submit {
    width: 100%;
    height: 48px;
    background: var(--sb-primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: var(--sb-font-main);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(30, 96, 213, 0.25);
}

.sb-btn-auth-submit:hover {
    background: var(--sb-primary-hover);
    transform: translateY(-1px);
}

.sb-auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--sb-text-muted);
}

.sb-auth-footer a {
    color: var(--sb-primary);
    font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .sb-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sb-companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .sb-counter-strip {
        grid-template-columns: repeat(3, 1fr);
    }
    .sb-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .sb-nav-menu {
        display: none;
    }
    .sb-navbar-oval {
        height: 60px;
        padding: 4px 12px 4px 16px;
    }
    .sb-search-form-row {
        grid-template-columns: 1fr;
    }
    .sb-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .sb-hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .sb-newsletter-bar {
        flex-direction: column;
        text-align: center;
    }
    .sb-newsletter-left {
        flex-direction: column;
    }
    .sb-newsletter-form {
        width: 100%;
        min-width: 0;
    }
    .sb-jobs-sidebar {
        display: none;
        margin-bottom: 20px;
    }
    .sb-jobs-sidebar.show-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .sb-hero-title {
        font-size: 34px;
    }
    .sb-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sb-companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sb-counter-strip {
        grid-template-columns: 1fr;
    }
    .sb-why-features-grid {
        grid-template-columns: 1fr;
    }
    .sb-footer-grid {
        grid-template-columns: 1fr;
    }
    .sb-footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* Right Hero Image & Smooth Floating Animation */
.sb-hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.sb-hero-person-img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.12));
    animation: sbHeroFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.sb-hero-person-img:hover {
    transform: scale(1.02);
}

@keyframes sbHeroFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}
/* Password Input Eye Toggle */
.sb-password-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.sb-password-wrap .sb-form-input {
    padding-right: 42px !important;
    width: 100%;
}
.sb-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: color 0.2s ease;
    z-index: 5;
}
.sb-password-toggle:hover {
    color: #1e60d5;
}
/* ==========================================================================
   DROPDOWNS & LOGIN POPOVERS
   ========================================================================== */
.sb-nav-item {
    position: relative;
}

.sb-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    padding: 8px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1300;
}

.sb-nav-item:hover .sb-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sb-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--sb-radius-sm);
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sb-dropdown-item:hover {
    background: var(--sb-primary-light);
    color: var(--sb-primary);
}

.sb-dropdown-item i {
    width: 16px;
    color: var(--sb-primary);
}

/* Login Dropdown Popover */
.sb-nav-dropdown-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sb-login-popover {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 270px;
    background: #ffffff;
    border: 1px solid var(--sb-border-color);
    border-radius: var(--sb-radius-md);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1300;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sb-nav-dropdown-wrap:hover .sb-login-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sb-login-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--sb-radius-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: left;
}

.sb-login-option:hover {
    background: var(--sb-primary-light);
}

.sb-login-option-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #eff6ff;
    color: var(--sb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.sb-login-option:hover .sb-login-option-icon {
    background: var(--sb-primary);
    color: #ffffff;
}

.sb-login-option-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 2px;
}

.sb-login-option-desc {
    font-size: 11px;
    color: #64748b;
    line-height: 1.3;
}
/* ==========================================================================
   INTERACTIVE AUTOCOMPLETE & SUGGESTIONS DROPDOWN (2026)
   ========================================================================== */
.sb-search-input-group {
    position: relative;
}

.sb-autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.12), 0 6px 16px -2px rgba(15, 23, 42, 0.06);
    z-index: 1060;
    max-height: 320px;
    overflow-y: auto;
    padding: 6px;
    display: none;
    animation: sbDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sb-autocomplete-dropdown.show {
    display: block;
}

.sb-suggestion-header {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    padding: 6px 10px 2px;
}

.sb-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.15s ease;
    text-align: left;
}

.sb-suggestion-item:hover, .sb-suggestion-item.selected {
    background: #eff6ff;
    color: #1e60d5;
}

.sb-suggestion-left {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sb-suggestion-left i {
    color: #94a3b8;
    font-size: 13px;
    width: 16px;
    text-align: center;
    transition: color 0.15s ease;
}

.sb-suggestion-item:hover .sb-suggestion-left i {
    color: #1e60d5;
}

.sb-suggestion-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
    text-transform: uppercase;
}

.sb-suggestion-item:hover .sb-suggestion-tag {
    background: #dbeafe;
    color: #1e60d5;
}

.sb-suggestion-match {
    color: #1e60d5;
    font-weight: 800;
}