/* ===================================
   Mobile Bottom Navigation Bar
   =================================== */

/* إخفاء Bottom Nav على الشاشات الكبيرة */
.mobile-bottom-nav {
    display: none;
}

/* إظهار Bottom Nav على الموبايل فقط */
@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #B68C5A 0%, #8B6F47 100%);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
        padding: 0;
        border-top: 2px solid rgba(255, 255, 255, 0.15);
    }

    .mobile-bottom-nav__container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: relative;
        padding: 8px 0;
        max-width: 100%;
    }

    .mobile-bottom-nav__item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        padding: 8px 5px;
        position: relative;
    }

    .mobile-bottom-nav__item:hover,
    .mobile-bottom-nav__item.active {
        color: #ffffff;
        transform: translateY(-2px);
    }

    .mobile-bottom-nav__icon {
        font-size: 22px;
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }

    .mobile-bottom-nav__item:hover .mobile-bottom-nav__icon,
    .mobile-bottom-nav__item.active .mobile-bottom-nav__icon {
        transform: scale(1.1);
    }

    .mobile-bottom-nav__label {
        font-size: 11px;
        font-weight: 500;
        margin: 0;
        white-space: nowrap;
    }

    /* أيقونة الواتساب في المنتصف - تصميم احترافي */
    .mobile-bottom-nav__whatsapp {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
        width: 65px;
        height: 65px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        border: 4px solid #ffffff;
        transition: all 0.3s ease;
        z-index: 10;
        text-decoration: none;
    }

    .mobile-bottom-nav__whatsapp:hover {
        transform: translateX(-50%) scale(1.1) rotate(5deg);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }

    .mobile-bottom-nav__whatsapp:active {
        transform: translateX(-50%) scale(0.95);
    }

    .mobile-bottom-nav__whatsapp-icon {
        font-size: 32px;
        color: #ffffff;
        animation: pulse 2s ease-in-out infinite;
    }

    /* تأثير النبض للواتساب */
    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }

    /* تأثير الموجة عند الضغط */
    .mobile-bottom-nav__whatsapp::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(37, 211, 102, 0.3);
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            width: 100%;
            height: 100%;
            opacity: 1;
        }
        100% {
            width: 150%;
            height: 150%;
            opacity: 0;
        }
    }

    /* Badge للإشعارات (اختياري) */
    .mobile-bottom-nav__badge {
        position: absolute;
        top: 2px;
        right: 50%;
        transform: translateX(10px);
        background: #ff4444;
        color: white;
        font-size: 10px;
        font-weight: bold;
        padding: 2px 5px;
        border-radius: 10px;
        min-width: 18px;
        text-align: center;
    }

    /* إضافة padding للمحتوى لتجنب تغطية Bottom Nav */
    body {
        padding-bottom: 70px;
    }

    /* تعديل Footer لتجنب التداخل */
    .footer-wrapper {
        margin-bottom: 70px;
    }

    /* تعديل Scroll to Top Button */
    .scroll-top {
        bottom: 80px !important;
    }

    /* تحسين المظهر على الشاشات الصغيرة جداً */
    @media (max-width: 375px) {
        .mobile-bottom-nav__icon {
            font-size: 20px;
        }
        
        .mobile-bottom-nav__label {
            font-size: 10px;
        }

        .mobile-bottom-nav__whatsapp {
            width: 60px;
            height: 60px;
            top: -28px;
        }

        .mobile-bottom-nav__whatsapp-icon {
            font-size: 28px;
        }
    }

    /* تحسين المظهر على الشاشات المتوسطة */
    @media (min-width: 768px) and (max-width: 991px) {
        .mobile-bottom-nav__icon {
            font-size: 24px;
        }
        
        .mobile-bottom-nav__label {
            font-size: 12px;
        }

        .mobile-bottom-nav__whatsapp {
            width: 70px;
            height: 70px;
            top: -32px;
        }

        .mobile-bottom-nav__whatsapp-icon {
            font-size: 36px;
        }
    }
}

/* تأثيرات إضافية احترافية */
@media (max-width: 991px) {
    /* تأثير الضغط على الأيقونات */
    .mobile-bottom-nav__item:active {
        transform: scale(0.95);
    }

    /* خط مؤشر للعنصر النشط */
    .mobile-bottom-nav__item.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: #ffffff;
        border-radius: 0 0 3px 3px;
    }

    /* تحسين الرؤية في الوضع الداكن */
    @media (prefers-color-scheme: dark) {
        .mobile-bottom-nav {
            background: linear-gradient(135deg, #8B6F47 0%, #6B5437 100%);
            border-top-color: rgba(255, 255, 255, 0.05);
        }
    }
}
