.site-header {
    background-color: #0f1c29;
    padding: 0 !important;
    border-bottom: 2px solid rgb(54, 64, 73);
    position: relative;
    width: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
}

.site-header.sticky {
    position: fixed;
    top: 0;
    background-color: rgba(15, 28, 41, 0.6);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.site-nav {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 1300px) {
    .site-nav {
        max-width: 90vw;
    }
}

.logo img {
    width: auto;
    height: 32px;
}

.logo,
.cta-login {
    flex: 1;
}

.navbar-wrapper {
    flex: 2;
}

.site-header a {
    font-size: 14px;
    line-height: 1.25rem;
    transition-property: color, background-color, border-color,
        text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
    color: hsl(216, 10%, 70%);
    text-align: center;
}

.navbar-wrapper a:hover {
    color: var(--color-white);
}

.navbar-wrapper ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
    padding-left: 0 !important;
    gap: 2rem;
}

.header-banner {
    background-color: rgba(30, 43, 54, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    gap: 2rem;
}

.header-banner div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    color: hsl(216 10% 70%);
}

.header-banner div svg {
    color: hsl(186 100% 33%);
    width: 14px;
    height: 14px;
}

.cta-login ul {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0 !important;
    padding-left: 0 !important;
    gap: 1rem;
}

.cta-login ul div a {
    font-size: 12px;
}

.cta-login div:first-child a {
   color: var(--color-white) !important;
   font-weight: 600;
   display: inline-block;
   padding: 0.5rem 1rem;
   border-radius: 0.5rem;
   transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-login div:first-child a:hover {
    background-color: hsl(210 15% 30%);
 }

.cta-login div:nth-child(2) a {
    display: inline-block;
    color: #101d29 !important;
    font-weight: 600;
    background: linear-gradient(135deg, hsl(75 100% 62%), hsl(90 100% 55%));
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-login div:nth-child(2) a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px hsl(75 100% 62% / .4);
}

/* ===== MOBILE & TABLET STYLES ONLY ===== */

/* Mobile Menu Toggle Button - Hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation - Hidden on desktop */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 28, 41, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: none;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    padding: 5rem 2rem 2rem;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-content: center;
    justify-content: space-around;
    flex-direction: column;
}


.mobile-menu-section {
    margin-bottom: 2rem;
}

.mobile-menu-section h3 {
    color: hsl(186 100% 33%);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-main-menu,
.mobile-secondary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.mobile-main-menu li,
.mobile-secondary-menu li {
    margin-bottom: 0.5rem;
}

.mobile-main-menu a,
.mobile-secondary-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: hsl(216, 10%, 80%);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.mobile-main-menu a:hover,
.mobile-secondary-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transform: translateX(5px);
}

.cta-login-mobile ul {
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0 !important;
    padding-left: 0 !important;
    gap: 1rem;
}

.cta-login-mobile ul div a {
    font-size: 12px;
}

.cta-login-mobile div:first-child a {
   color: var(--color-white) !important;
   font-weight: 600;
   display: inline-block;
   padding: 0.5rem 1rem;
   border-radius: 0.5rem;
   transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-login-mobile div:first-child a:hover {
    background-color: hsl(210 15% 30%);
 }

.cta-login-mobile div:nth-child(2) a {
    display: inline-block;
    color: #101d29 !important;
    font-weight: 600;
    background: linear-gradient(135deg, hsl(75 100% 62%), hsl(90 100% 55%));
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-login-mobile div:nth-child(2) a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px hsl(75 100% 62% / .4);
}


/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .site-nav {
        justify-content: space-between;
        padding: 1rem 0;
    }
    
    .logo {
        flex: 1;
    }
    
    .navbar-wrapper,
    .cta-login {
        display: none;
    }
    
    .header-banner {
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .header-banner div {
        font-size: 11px;
    }
    
    .header-banner div svg {
        width: 12px;
        height: 12px;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .site-nav {
        padding: 0.75rem 0;
    }
    
    .header-banner {
        padding: 0.5rem 0;
    }
    
    .header-banner div {
        font-size: 10px;
        gap: 0.25rem;
    }
    
    .header-banner div svg {
        width: 10px;
        height: 10px;
    }
    
    .mobile-nav-content {
        padding: 4rem 1.5rem 2rem;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .site-nav {
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .header-banner {
        display: none;
    }
    
    .mobile-nav-content {
        padding: 3.5rem 1rem 2rem;
    }
    
    .mobile-menu-section h3 {
        font-size: 1rem;
    }
    
    .mobile-main-menu a,
    .mobile-secondary-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}