.bottom-nav {
    display: none;
}

@media (max-width: 1024px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 56px;
        z-index: 1000;
        background-color: #000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .bottom-nav-item {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: white;
        font-weight: bold;
        font-size: 14px;
        transition: all 0.3s ease;
        padding: 10px;
        height: 100%;
    }

    .bottom-nav-item img {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        filter: brightness(0) invert(1);
    }

    .bottom-nav-whatsapp {
        background-color: #25D366;
        margin: 0;
        border: none;
    }

    .bottom-nav-whatsapp:hover {
        background-color: #1da851;
    }

    .bottom-nav-contact {
        background-color: var(--gracie-red);
        margin: 0;
        border: none;
    }

    .bottom-nav-contact:hover {
        background-color: #c41230;
    }

    .floating-contact-btn,
    .floating-whatsapp-btn {
        display: none;
    }
}

@media (max-width: 360px) {
    .bottom-nav-item {
        font-size: 12px;
        padding: 8px;
    }

    .bottom-nav-item img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }
}