/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.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 Menu */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    background: white;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.mobile-nav-link:hover {
    background-color: #f5f5f5;
}

.mobile-dropdown {
    display: none;
    background: #f9f9f9;
    padding: 0;
}

.mobile-nav-item.active .mobile-dropdown {
    display: block;
}

.mobile-dropdown li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-dropdown li:last-child {
    border-bottom: none;
}

.mobile-dropdown a {
    display: block;
    padding: 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.mobile-dropdown a:hover {
    background-color: #f0f0f0;
}

.mobile-banking .mobile-nav-link {
    background-color: #4a90e2;
    color: white;
}

.mobile-banking .mobile-dropdown {
    background-color: #3a7bc8;
}

.mobile-banking .mobile-dropdown a {
    color: white;
}

.mobile-banking .mobile-dropdown a:hover {
    background-color: #2968b3;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* Tablet and Mobile Responsive Styles */
@media (max-width: 1024px) {
    .top-bar {
        padding: 8px 0;
    }
    
    .gov-logo {
        max-height: 35px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-menu {
        display: block;
    }
    
    .nav-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .bdv-logo {
        max-height: 40px;
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .top-bar {
        padding: 5px 0;
    }
    
    .gov-logo {
        max-height: 30px;
        width: auto;
    }
    .mobile-nav-content {
    position: absolute;
    left: 0;
    width: 53%;
    background: #4a90e2;
    overflow-y: auto;
    padding: 20px 0;
    height: 100vh;
    top: 0;
}
}