.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--neutral-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-custom .uk-navbar-nav > li > a {
    color: var(--neutral-700);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-custom .uk-navbar-nav > li > a:hover,
.navbar-custom .uk-navbar-nav > li.uk-active > a {
    color: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.navbar-custom .uk-navbar-nav li a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.navbar-custom .uk-navbar-nav > li:hover > a::after,
.navbar-custom .uk-navbar-nav > li.uk-active > a::after {
    width: 100%;
}
.uk-navbar-nav a {
    min-height: 0 !important;
}
.ss-search-form {
    position: relative;
    margin-left: 15px;
}

.ss-search-form__input {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(36, 60, 102, 0.2);
    border-radius: 25px;
    padding: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(36, 60, 102, 0.08);
    min-width: 280px;
}

.ss-search-form__input:hover {
    border-color: rgba(36, 60, 102, 0.4);
    box-shadow: 0 4px 15px rgba(36, 60, 102, 0.12);
}

.ss-search-form__input:focus-within {
    border-color: #243c66;
    box-shadow: 0 0 0 3px rgba(36, 60, 102, 0.1);
    transform: scale(1.02);
}

.ss-search-form__input input {
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    color: #243c66;
    font-size: 14px;
    flex: 1;
    font-weight: 400;
}

.ss-search-form__input input::placeholder {
    color: rgba(36, 60, 102, 0.6);
    font-weight: 400;
}

.ss-search-form__submit {
    background: linear-gradient(135deg, #243c66, #2a4169);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ss-search-form__submit:hover {
    background: linear-gradient(135deg, #2a4169, #243c66);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(36, 60, 102, 0.3);
}

.ss-search-form__submit:active {
    transform: translateY(0);
}

.ss-search-form__submit::before {
    content: "🔍";
    font-size: 14px;
}
.logo-container {
    width: 85% !important;
}
