/* ==========================================================
   HEADER - DESKTOP STYLES WITH HOVER ANIMATIONS
   ========================================================== */

:root {
    --blue: #1C3F60;
    --yellow: #FBC333;
    --white: #ffffff;
}


/*.header__logo img,*/
/*.header__logo .custom-logo,*/
/*.header-mobile__logo img,*/
/*.header-mobile__logo .custom-logo {*/
/*    height: auto;*/
/*    width: auto;*/
/*    max-height: 100%;*/
/*    object-fit: Cover;*/
/*}*/

/* Header Container */
.header {
    background-color: var(--blue);
    width: 100%;
    position: relative;
    z-index: 100;
}

.header .container {
    max-width: 100%;
    padding: 0;
}

/* Logo with Clip Path */
.header__logo {
    max-width: 377px;
    width: 100%;
    padding: 11px 60px 11px 2px;
    background: var(--blue);
    -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    transition: background-color 0.3s ease;
    height: 123px;
    z-index: 2;
}

.header__logo:hover {
    background-color: #0f2a40; /* Darker blue on hover */
}

.header__logo a {
    display: block;
    width: 100%;
}

.header__logo a img {
    object-fit: cover;
    object-position: center;
    aspect-ratio: 283 / 80;
    display: block;
    height: 90px;
    transition: transform 0.3s ease;
}

.header__logo a:hover img {
    transform: scale(1.02);
}

/* Main Header Row */
.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
}

.header__navs {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Search & Login Row */
.header__search-login {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 8px 16px;
    gap: 4rem;
    position: relative;
}

.header__search {
    flex: 1;
    max-width: 600px;
}

/* Search Form - Enhanced hover */
.header__search-form {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 5px 16px;
    transition: all 0.3s ease;
}

.header__search-form:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.15);
    transform: translateY(-2px);
    background-color: #ffffff;
}

.header__search-form:focus-within {
    border-color: var(--yellow);
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.2);
}

.header__search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 6px 12px;
    font-size: 14px;
    outline: none;
    color: #333;
}

.header__search-input:focus {
    color: var(--blue);
}

.header__search-input::placeholder {
    color: #999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header__search-input:focus::placeholder {
    color: #ccc;
}

.header__search-button {
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.header__search-button svg {
    width: 20px;
    height: 20px;
    stroke: #1c3148;
    transition: all 0.3s ease;
}

.header__search-button:hover {
    transform: scale(1.1);
}

.header__search-button:hover svg {
    stroke: var(--yellow);
}

/* Login Link - Enhanced hover */
.header__login a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 30px;
}

.header__login a:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

.header__login a svg {
    transition: transform 0.3s ease;
    stroke: #333;
}

.header__login a:hover svg {
    stroke: var(--yellow);
    transform: rotate(5deg);
}

/* Menu & Contact Row (Yellow Bar) */
.header__menu-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--yellow);
    padding: 16px 16px 16px 45px;
    margin-left: -58px;
    transition: background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shimmer effect on hover */
.header__menu-contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.header__menu-contact:hover::after {
    left: 100%;
}

.header__menu ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu ul li {
    position: relative;
}

.header__menu ul li a {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    color: var(--blue);
    text-decoration: none;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Underline animation on hover */
.header__menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: width 0.3s ease;
}

.header__menu ul li a:hover {
    transform: translateY(-2px);
}

.header__menu ul li a:hover::after {
    width: 100%;
}

.header__contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__contact > div {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 5px 8px;
    border-radius: 20px;
}

.header__contact > div:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.header__contact > div a {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    color: var(--blue);
    text-decoration: none;
    text-transform: none;
    transition: color 0.3s ease;
}

.header__contact > div:hover a {
    color: var(--blue);
}

.header__contact svg {
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.3s ease;
}

.header__contact > div:hover svg {
    transform: scale(1.1);
    fill: var(--blue);
}