/* ===== HEADER BASE ===== */
.agu-header {
    background: #0b1c3a;
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* ===== LOGO ===== */
.agu-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.agu-logo-icon {
    font-size: 32px;
    margin-right: 10px;
    color: #3aa6ff;
}

.agu-logo-title {
    font-size: 22px;
    font-weight: 700;
}

.agu-logo-sub {
    font-size: 12px;
    opacity: 0.7;
}

/* ===== DESKTOP NAV ===== */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link-custom {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 8px 10px;
    transition: 0.3s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: #3aa6ff;
}

/* ===== DESKTOP DROPDOWN ===== */
.more-menu {
    position: relative;
}

.more-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #12264d;
    border-radius: 6px;
    display: none;
    min-width: 230px;
    padding: 8px 0;
}

.more-dropdown a {
    display: block;
    padding: 8px 15px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.more-dropdown a:hover {
    background: #1c3b75;
}

.more-menu:hover .more-dropdown {
    display: block;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    background: none;
    border: none;
    font-size: 22px;
    color: #fff;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #0b1c3a;
    padding: 10px 0;
}

.mobile-nav a {
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 15px;
}

.mobile-nav a:hover {
    background: #12264d;
}

/* ===== MOBILE DROPDOWN ===== */
/* ===== MOBILE MENU IMPROVED ===== */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #081a36;
    padding: 15px 0;
}

.mobile-nav a,
.mobile-dropbtn {
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    display: block;
}

/* Hover effect */
.mobile-nav a:hover,
.mobile-dropbtn:hover {
    background: #102a52;
}

/* Membership dropdown button */
.mobile-dropbtn {
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
}

/* Arrow alignment */
.mobile-dropbtn i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

/* Dropdown inner links */
.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    background: #102a52;
}

.mobile-dropdown-content a {
    padding: 10px 35px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Remove last border */
.mobile-nav a:last-child {
    border-bottom: none;
}
