/* Enhanced Mobile Menu with Compact Design */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid #0094e8;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    color: #0094e8;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: #0094e8;
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    padding-top: 60px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #0094e8;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.mobile-menu-close:hover {
    background: rgba(0, 148, 232, 0.1);
}

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

.mobile-nav-links li {
    border-bottom: 1px solid rgba(0, 148, 232, 0.1);
}

.mobile-nav-links a {
    display: block;
    padding: 18px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
}

.mobile-nav-links a:hover {
    background: rgba(0, 148, 232, 0.05);
    color: #0094e8;
    padding-left: 35px;
}

/* Compact Dropdown functionality */
.mobile-nav-links .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-links .has-dropdown > a::after {
    content: '▶';
    font-size: 10px;
    transition: transform 0.3s;
}

.mobile-nav-links .has-dropdown.active > a::after {
    transform: rotate(90deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 148, 232, 0.02);
}

.mobile-dropdown.active {
    max-height: 300px;
}

.mobile-dropdown a {
    padding: 12px 25px 12px 40px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid rgba(0, 148, 232, 0.05);
}

.mobile-dropdown a:hover {
    background: rgba(0, 148, 232, 0.08);
    color: #0094e8;
}

.mobile-language-section {
    padding: 25px;
    border-top: 2px solid rgba(0, 148, 232, 0.1);
    margin-top: 15px;
}

.mobile-language-section h4 {
    color: #0094e8;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.mobile-language-switch {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.mobile-language-switch .lang-btn {
    min-width: 55px;
    height: 40px;
    font-size: 20px;
    border-radius: 8px;
    flex: 0 0 auto;
    width: 55px;
}

/* Enhanced Desktop Menu with Dropdown */
.nav-links .has-dropdown {
    position: relative;
}

.nav-links .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links .has-dropdown > a::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-links .has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.nav-links .has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 148, 232, 0.1);
    transition: all 0.3s;
}

.nav-dropdown a:hover {
    background: rgba(0, 148, 232, 0.05);
    color: #0094e8;
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: relative;
    }

    nav .language-switch {
        display: none;
    }
}

/* Floating Donate Button */
.floating-donate {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #FFD700;
    color: #333;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-donate:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    color: #333;
}

@media (max-width: 768px) {
    .floating-donate {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}
 