/* Mobile Footer Menu Styles */

.geo-mobile-footer-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
}

.geo-mobile-footer-menu.hide {
    transform: translateY(100%);
}

.geo-mobile-footer-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    width: 100%;
    min-height: 50px;
}

.geo-mobile-footer-item {
    flex: 1;
    text-align: center;
}

.geo-mobile-footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 4px;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.geo-mobile-footer-link span {
    display: block;
}

.geo-mobile-footer-link:hover,
.geo-mobile-footer-link:active,
.geo-mobile-footer-link.active {
    color: #00B5CC;
}

/* Hide regular footer on mobile */
@media (max-width: 768px) {
    .geo-footer {
        display: none !important;
    }
    
    .geo-mobile-footer-menu {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind mobile footer */
    body {
        padding-bottom: 60px;
    }
    
    /* Adjust chat-bundle position based on mobile footer menu height */
    .chat-bundle {
        bottom: 70px !important;
    }
    
    .geo-mobile-footer-menu {
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .geo-mobile-footer-link {
        font-size: 12px;
        padding: 10px 2px;
    }
    
    .geo-mobile-footer-nav {
        padding: 8px 0;
        min-height: 48px;
    }
    
    body {
        padding-bottom: 55px;
    }
    
    /* Adjust chat-bundle position for smaller screens */
    .chat-bundle {
        bottom: 65px !important;
    }
    
    .geo-mobile-footer-menu {
        min-height: 48px;
    }
}

