.sk-header-wrapper-cfba07b2 {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* --- TOP BAR --- */
.sk-topbar {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
    padding: 10px 0;
}

.sk-topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sk-topbar-item {
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    position: relative;
}

.sk-topbar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
}

.sk-topbar-icon {
    display: inline-flex;
    align-items: center;
}

.sk-topbar-icon svg {
    width: 14px;
    height: 14px;
}

.sk-rating-stars {
    margin-left: 4px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* --- MAIN NAVBAR --- */
.sk-navbar {
    width: 100%;
    padding: 16px 0;
    position: relative;
    z-index: 100;
}

.sk-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sk-logo-area {
    flex-shrink: 0;
}

.sk-logo-link {
    display: inline-block;
}

.sk-logo-img {
    max-height: 64px; /* Increased from 52px */
    width: auto;
    display: block;
}

/* Navigation Links */
.sk-nav-menu-wrapper {
    display: block;
}

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

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

.sk-nav-link {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.25s ease;
}

.sk-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.sk-nav-item.active .sk-nav-link::after,
.sk-nav-item:hover .sk-nav-link::after {
    transform: scaleX(1);
}

/* Dropdown menu */
.sk-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 101;
}

.sk-nav-item:hover .sk-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sk-sub-item a {
    display: block;
    padding: 10px 20px;
    color: #072e54;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.sk-sub-item a:hover {
    background-color: #f8f9fa;
    color: #005f59;
}

/* Header Right CTA */
.sk-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sk-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: opacity 0.2s, transform 0.2s;
}

.sk-header-cta:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.sk-cta-icon {
    display: inline-flex;
    align-items: center;
}

.sk-cta-icon svg {
    width: 16px;
    height: 16px;
}

/* Hamburger toggle */
.sk-hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.sk-hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: #072e54;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Drawer Mobile Menu */
.sk-mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 20px;
    z-index: 99;
    border-top: 1px solid #f1f5f9;
}

.sk-mobile-drawer.open {
    display: block;
}

.sk-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sk-mobile-link {
    font-size: 16px;
    font-weight: 600;
    color: #072e54;
    text-decoration: none;
    display: block;
}

.sk-mobile-sub {
    list-style: none;
    margin: 8px 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sk-mobile-sub-item a {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
}

.sk-mobile-cta-wrap {
    margin-top: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .sk-topbar-item:not(:last-child)::after {
        display: none;
    }
    .sk-topbar-container {
        justify-content: center;
        gap: 16px 24px;
    }
}

@media (max-width: 768px) {
    .sk-nav-menu-wrapper {
        display: none;
    }
    .sk-hamburger-toggle {
        display: flex;
    }
    .sk-header-right .sk-header-cta {
        display: none; /* Hide button on mobile, show inside drawer */
    }
    .sk-navbar-container {
        padding: 0 16px;
    }
    .sk-logo-img {
        max-height: 52px; /* Increased from 44px */
    }
}
