/* Netfikir Mobile Footer Styles */
.netfikir-mobile-footer {
    display: none; /* Hidden by default - will only appear on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 10px 0;
    max-height: 80px;
}

.netfikir-mobile-footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    padding: 0 10px;
}

.netfikir-mobile-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    max-width: 100px;
}

.netfikir-mobile-footer-item:hover,
.netfikir-mobile-footer-item:focus {
    background: #f0f0f0;
    color: #2271b1;
    text-decoration: none;
}

.netfikir-mobile-footer-icon {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.netfikir-mobile-footer-icon i {
    font-size: 24px;
}

.netfikir-mobile-footer-text {
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
    max-width: 100%;
}

/* Show only on mobile devices (768px and below) */
@media screen and (max-width: 768px) {
    .netfikir-mobile-footer {
        display: block;
    }
    
    /* Add padding to body so footer doesn't cover content */
    body {
        padding-bottom: 80px;
    }
}

/* For very small screens */
@media screen and (max-width: 480px) {
    .netfikir-mobile-footer-item {
        padding: 6px 8px;
        max-width: 80px;
    }
    
    .netfikir-mobile-footer-icon {
        font-size: 20px;
    }
    
    .netfikir-mobile-footer-icon i {
        font-size: 20px;
    }
    
    .netfikir-mobile-footer-text {
        font-size: 10px;
    }
}

/* Hide for tablet and above */
@media screen and (min-width: 769px) {
    .netfikir-mobile-footer {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
}

