ul.navbar-nav li:last-child {
    display: none;
}
/* =========================== Quick Filter Buttons ========================= */
.quick-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}

.quick-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #e8edf3;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-filter-btn:hover {
    transform: translateY(-3px);
    color: black;
}

.quick-filter-btn--urgent:hover {
    box-shadow: 0 6px 20px rgba(230, 76, 60, 0.18);
    border-color: rgb(249, 115, 22);
}

.quick-filter-btn--no-cv:hover {
    box-shadow: 0 6px 20px rgba(52, 73, 94, 0.15);
    border-color: rgb(28, 111, 196);
}

.quick-filter-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.quick-filter-btn__icon i {
    color: #fff;
    font-size: 16px;
}

.quick-filter-btn__icon--urgent i {
    color: rgb(249, 115, 22);
    font-size: 32px;
}

.quick-filter-btn__icon--no-cv i {
    color: rgb(28, 111, 196);
    font-size: 32px;
}

.quick-filter-btn__badge {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.quick-filter-btn__badge--urgent {
    background: linear-gradient(135deg, rgb(249, 115, 22), rgb(249, 115, 22));
}

.quick-filter-btn__badge--no-cv {
    background: linear-gradient(135deg, rgb(28, 111, 196), rgb(28, 111, 196));
}

/* Quick Category Chips */
.quick-category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.quick-category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13.5px;
    text-decoration: none;
    color: #1e88e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
}

.quick-category-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.quick-category-chip i {
    font-size: 15px;
}

/* Banner Search Form Override */
.banner-form.banner-form--enhanced {
    display: flex;
    gap: 0;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    background: #fff;
    padding: 6px 6px 6px 16px;
    align-items: center;
    flex-wrap: wrap;
}

.banner-form__keyword-wrapper {
    flex: 2;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1px solid #eee;
    padding-right: 12px;
}

.banner-form__keyword-wrapper .la-search {
    color: var(--base-color, #1abc9c);
    font-size: 18px;
    flex-shrink: 0;
}

.banner-form__keyword-input {
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 15px;
    padding: 0;
    background: transparent;
    width: 100%;
}

.banner-form__search-btn {
    border-radius: 50px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}

@media screen and (max-width: 575px) {
    .quick-filter-buttons {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .quick-filter-btn__badge {
        display: none;
    }

    .quick-filter-btn {
        flex: 1;
        padding: 4px 8px;
        font-size: 12px;
    }

    .banner-form.banner-form--enhanced {
        border-radius: 16px;
        padding: 12px;
        flex-direction: column;
        gap: 10px;
    }

    .banner-form__keyword-wrapper {
        border-right: none;
        padding-right: 0;
        min-width: unset;
        width: 100%;
    }

    .banner-form__search-btn {
        width: 100%;
    }
}

/* =========================== Multi-Select Component ========================= */
.ms-container {
    min-width: 130px;
    position: relative;
}

.ms-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    height: 100%;
    cursor: pointer;
    user-select: none;
}

.ms-trigger__icon {
    color: var(--base-color, #1abc9c);
    font-size: 18px;
    flex-shrink: 0;
}

.ms-label {
    font-size: 15px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.ms-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.ms-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -10px;
    min-width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: msFadeIn 0.15s ease-out;
}

.ms-panel__header {
    font-size: 11px;
    font-weight: 700;
    color: #a0aec0;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-left: 2px;
}

.ms-search-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.ms-search {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e8ecf1;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background: #f8f9fb;
    color: #333;
    transition: border-color 0.2s, background 0.2s;
}

.ms-options {
    max-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ms-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    cursor: pointer;
    margin: 0;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.12s ease;
}

.ms-option input[type="checkbox"] {
    display: none;
}

.ms-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid #d0d5dd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #fff;
}

.ms-check svg {
    opacity: 0;
    transition: opacity 0.15s;
}

.ms-option__text {
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
}

@keyframes msFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ms-option:last-child {
    border-bottom: none !important;
}

.ms-option:hover {
    background: #f7f8fa !important;
}

.ms-option input:checked+.ms-check {
    background: rgb(28, 111, 196) !important;
    border-color: rgb(28, 111, 196) !important;
}

.ms-option input:checked+.ms-check svg {
    opacity: 1 !important;
}

.ms-search:focus {
    border-color: rgb(28, 111, 196) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
}

.ms-options::-webkit-scrollbar {
    width: 4px;
}

.ms-options::-webkit-scrollbar-track {
    background: transparent;
}

.ms-options::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.home-section,
.featured-companies {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.text-24 {
    font-size: 24px;
}

.no-cv-jobs {
    background-image: linear-gradient(to right, #fff3ec, #fff, rgba(255, 243, 236, 0));
}

.no-cv-jobs h2 {
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(to right, #f7393c, #ff9152);
}

.suggested-jobs {
    background: rgba(246, 249, 255, 1);
}

.featured-companies {
    background: rgba(250, 250, 250, 1);
}

/* =========================== Urgent Jobs Enhanced Section ========================= */

/* Filter Bar */
.uj-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

/* Filter Dropdown */
.uj-filter-dropdown {
    position: relative;
    flex-shrink: 0;
}

.uj-filter-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s;
    user-select: none;
    white-space: nowrap;
}

.uj-filter-dropdown__trigger:hover {
    border-color: var(--base-color, #1abc9c);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.uj-filter-dropdown__trigger i:first-child {
    color: var(--base-color, #1abc9c);
    font-size: 16px;
}

.uj-filter-dropdown__arrow {
    font-size: 12px !important;
    color: #9ca3af !important;
    transition: transform 0.25s ease;
}

.uj-filter-dropdown__arrow.rotated {
    transform: rotate(180deg);
}

.uj-filter-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
    z-index: 100;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: ujDropFadeIn 0.18s ease-out;
}

.uj-filter-dropdown__menu.show {
    display: block;
}

.uj-filter-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #4b5563;
    transition: all 0.15s;
}

.uj-filter-dropdown__item:hover {
    background: #f3f4f6;
    color: #111827;
}

.uj-filter-dropdown__item.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(99, 102, 241, 0.04));
    color: #1e88e5;
    font-weight: 600;
}

.uj-filter-dropdown__item.active::after {
    content: '✓';
    margin-left: auto;
    font-weight: 700;
    color: #1e88e5;
}

.uj-filter-dropdown__item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

@keyframes ujDropFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Pills */
.uj-filter-pills-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.uj-filter-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
    flex: 1;
}

.uj-filter-pills::-webkit-scrollbar {
    display: none;
}

.uj-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.uj-pill:hover {
    border-color: var(--base-color, #1abc9c);
    color: var(--base-color, #1abc9c);
    background: rgba(26, 188, 156, 0.04);
}

.uj-pill.active {
    background: linear-gradient(135deg, var(--base-color, #1abc9c), #2dd4bf);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(26, 188, 156, 0.25);
    font-weight: 600;
}

.uj-filter-pills__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    font-size: 14px;
    color: #6b7280;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
}

.uj-filter-pills__nav:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.uj-filter-pills__nav--left {
    left: 0;
}

.uj-filter-pills__nav--right {
    right: 0;
}

.uj-filter-pills__nav.hidden {
    display: none;
}

/* Carousel */
.uj-carousel-wrapper {
    overflow: hidden;
}

.uj-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    transition: opacity 0.3s ease;
}

.uj-carousel--animating {
    animation: ujSlideIn 0.35s ease-out;
}

.uj-carousel__item {
    width: calc(33.333% - 16px);
    display: none;
}

.uj-carousel__item.uj-visible {
    display: flex;
}

.uj-carousel__card {
    width: 100%;
}

.feature-item {
    position: relative;
}

.feature-item__time {
    position: absolute;
    top: 12px;
    right: 12px;
}

.uj-carousel__item.uj-hidden {
    display: none;
}

@keyframes ujSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pagination */
.uj-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.uj-pagination__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    transition: all 0.2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.uj-pagination__btn:hover:not(:disabled) {
    border-color: var(--base-color, #1abc9c);
    color: var(--base-color, #1abc9c);
    box-shadow: 0 3px 12px rgba(26, 188, 156, 0.15);
}

.uj-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.uj-pagination__info {
    font-size: 15px;
    font-weight: 600;
    color: #4b5563;
    min-width: 50px;
    text-align: center;
}

/* =========================== Hotline Section ========================= */
.hotline-section {
    margin-top: 0;
    display: flex;
    gap: 0;
    flex-direction: row;
}

.hotline-card {
    flex: 1;
    background: #fff;
    padding: 28px 30px 24px;
}
.hotline-card:first-child {
    border-right: 1px solid rgba(223, 223, 224, 1);
}
/* .hotline-card:hover {
box-shadow: 0 6px 28px rgba(0, 0, 0, 0.10);
transform: translateY(-2px);
} */

.hotline-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: center;
}

.hotline-card__title--seeker {
    color: #00ca5b;
}

.hotline-card__title--employer {
    color: rgb(0, 79, 159);
}

.hotline-card__numbers {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.hotline-card__number-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hotline-card__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.hotline-card__label--employer {
    color: rgb(0, 79, 159);
}

.hotline-card__label--seeker {
    color: #01bc55;
}

.hotline-card__icon {
    font-size: 16px;
}

.hotline-card__icon--seeker {
    color: #5c6bc0;
}

.hotline-card__icon--employer {
    color: rgb(44, 149, 255);
}

.hotline-card__phone {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.hotline-card__phone--seeker {
    color: #01b251;
}

.hotline-card__phone--employer {
    color: rgb(44, 149, 255);
}

.hotline-card__action {
    display: flex;
    justify-content: center;
    text-align: left;
}

.hotline-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    background: transparent;
}

.hotline-card__btn--seeker {
    border: 2px solid hsl(var(--base));
    color: hsl(var(--base));
}

.hotline-card__btn--seeker:hover {
    background:hsl(var(--base));
    color: #fff;
    box-shadow: 0 4px 16px rgba(92, 107, 192, 0.3);
}

.hotline-card__btn--employer {
    border: 2px solid #1e88e5;
    color: #1565c0;
}

.hotline-card__btn--employer:hover {
    background: #1e88e5;
    color: #fff;
    box-shadow: 0 4px 16px rgba(30, 136, 229, 0.3);
}

/* ============= Responsive ============= */
@media screen and (max-width: 991px) {
    .uj-carousel__item {
        width: 100%;
    }
}

@media screen and (max-width: 575px) {
    .hotline-section {
        flex-direction: column;
    }

    .hotline-card--employer {
        border-top: 1px solid rgb(223,223,224);
    }

    .uj-carousel {
        gap: 8px;
    }

    .home-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .uj-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .uj-filter-dropdown__trigger {
        width: 100%;
        justify-content: space-between;
    }

    .uj-filter-dropdown__menu {
        width: 100%;
    }

    .uj-filter-pills-wrapper {
        padding: 0 30px;
    }

    .hotline-card {
        padding: 20px 18px 18px;
    }

    .hotline-card__numbers {
        gap: 16px;
    }

    .hotline-card__phone {
        font-size: 17px;
    }

    .hotline-card__btn {
        width: 100%;
        justify-content: center;
    }
}