/* =========================
   Mobile Sticky Footer CSS
   ========================= */
.mobile-sticky-footer {
    display: none;
}

@media (max-width: 767px) {

    /* Adjust main padding so content isn't covered by sticky footer */
    /* Note: existing style has padding-bottom: 50px for .header-06 */
    /* We target the main wrapper or header to add extra padding */
    main .header.header-06 {
        padding-bottom: 60px;
    }

    /* Hide desktop footer on mobile */
    main .footer {
        display: none;
    }

    .mobile-sticky-footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #0f1724;
        /* Match main background */
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        padding: 10px 0;
        z-index: 9999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-sticky-footer a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 24px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        /* Touch target size */
        height: 44px;
        text-decoration: none;
    }

    .mobile-sticky-footer a:hover,
    .mobile-sticky-footer a:focus {
        color: #fff;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
}