/* Mobile Menu Overlay - Hidden by default on all devices */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1c5a6a 0%, #26b3af 100%);
    z-index: 9999;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

.mobile-menu-overlay.active {
    display: flex !important;
    flex-direction: column;
}

/* Hide mobile menu button on desktop */
.mobile-menu-btn {
    display: none;
}

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

.mobile-menu-overlay.active {
    display: block !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-menu-logo-img {
    height: 50px !important;
    max-width: 200px !important;
    object-fit: contain !important;
}

.mobile-menu-logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
}

.mobile-menu-nav a {
    padding: 18px 25px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
}

.mobile-menu-nav a:hover::before {
    width: 100%;
}

.mobile-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 35px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-menu-nav a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Social Buttons */
.mobile-menu-social {
    padding: 30px 25px;
    margin-top: auto;
    position: sticky;
    bottom: 0;
}

.mobile-menu-social-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.mobile-menu-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-menu-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.mobile-menu-social-links a i {
    font-size: 18px;
}

.mobile-menu-social-links a span {
    display: none;
    font-size: 12px;
    font-weight: 600;
}

/* Fallback: Show text if icons don't load */
.mobile-menu-social-links a:not(:has(i)) span {
    display: block;
}

.mobile-menu-social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    /* Show mobile menu button on mobile */
    .mobile-menu-btn {
        display: block !important;
    }
}
