@media (max-width: 991px) {
    .social-bar {
        right: 0;
        top: auto;
        bottom: -80px;
        left: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        transform: none;
        transition: bottom 0.6s ease, opacity 0.6s ease;
        opacity: 0;
        width: 100%;
    }

    .social-bar.show {
        bottom: 0;
        opacity: 1;
    }

    .social-link {
        flex: 1;
        height: 50px;
        justify-content: center;
        border-radius: 0;
        text-align: center;
        font-size: 16px;
    }

    .social-link span {
        display: none !important;
    }

    .social-link:hover {
        width: auto;
        border-radius: 0;
    }

    .toggle-btn {
        flex: 0.3;
        height: 50px;
        border-radius: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .mobile-menu {
        text-align: center;
    }

    .collapse.show .mobile-menu {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 1.8rem;
    }

    .slider-title + span {
        font-size: 1rem;
        max-width: 90%;
    }

    #sidebar {
        position: fixed;
        top: 0;
        left: -260px;
        height: 100vh;
        z-index: 1030;
    }

    #sidebar.show { 
        left: 0; 
        box-shadow: 2px 0 12px rgba(0,0,0,0.3); 
    }
}